Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / msgpack / generic.nix
bloba784bc0263613ac5f5ab3bb1e7dddfe3f16ebedc
1 { lib, stdenv, cmake
2 , version, src, patches ? [ ]
3 , ...
4 }:
6 stdenv.mkDerivation {
7   pname = "msgpack";
8   inherit version;
10   inherit src patches;
12   nativeBuildInputs = [ cmake ];
14   cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DMSGPACK_BUILD_EXAMPLES=OFF";
16   meta = with lib; {
17     description = "MessagePack implementation for C and C++";
18     homepage    = "https://msgpack.org";
19     license     = licenses.asl20;
20     maintainers = with maintainers; [ redbaron ];
21     platforms   = platforms.all;
22   };