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

29 lines
620 B
Nix
Raw Normal View History

2015-03-10 18:44:59 +00:00
{ stdenv, cmake
, version, src, patches ? [ ]
, ...
}:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "msgpack";
inherit version;
2015-03-10 18:44:59 +00:00
inherit src patches;
nativeBuildInputs = [ cmake ];
2017-10-11 10:54:53 +01:00
enableParallelBuilding = true;
cmakeFlags = []
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"-DMSGPACK_BUILD_EXAMPLES=OFF"
;
2015-03-10 18:44:59 +00:00
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";
2018-05-01 04:03:23 +01:00
homepage = https://msgpack.org;
2017-10-11 10:54:53 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ redbaron ];
2017-10-11 10:54:53 +01:00
platforms = platforms.all;
2015-03-10 18:44:59 +00:00
};
}