nixpkgs/pkgs/development/libraries/libmsgpack/generic.nix
William A. Kennington III 0de5e56d87 msgpack: Update to 1.0.0
2015-03-10 11:44:59 -07:00

21 lines
424 B
Nix

{ stdenv, cmake
, version, src, patches ? [ ]
, ...
}:
stdenv.mkDerivation rec {
name = "libmsgpack-${version}";
inherit src patches;
buildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";
homepage = http://msgpack.org;
maintainers = with maintainers; [ redbaron wkennington ];
license = licenses.asl20;
platforms = platforms.all;
};
}