nixpkgs/pkgs/development/libraries/libmsgpack/generic.nix

32 lines
676 B
Nix
Raw Normal View History

2015-03-10 18:44:59 +00:00
{ stdenv, cmake
, version, src, patches ? [ ]
, hostPlatform
2015-03-10 18:44:59 +00:00
, ...
}:
stdenv.mkDerivation rec {
name = "libmsgpack-${version}";
inherit src patches;
nativeBuildInputs = [ cmake ];
2017-10-11 09:54:53 +00:00
enableParallelBuilding = true;
crossAttrs = {
} // stdenv.lib.optionalAttrs (hostPlatform.libc == "msvcrt") {
2017-10-11 09:54:53 +00:00
cmakeFlags = [
"-DMSGPACK_BUILD_EXAMPLES=OFF"
"-DCMAKE_SYSTEM_NAME=Windows"
];
};
2015-03-10 18:44:59 +00:00
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";
2017-10-11 09:54:53 +00:00
homepage = http://msgpack.org;
license = licenses.asl20;
2015-03-10 18:44:59 +00:00
maintainers = with maintainers; [ redbaron wkennington ];
2017-10-11 09:54:53 +00:00
platforms = platforms.all;
2015-03-10 18:44:59 +00:00
};
}