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

24 lines
537 B
Nix
Raw Normal View History

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