about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/msgpack/generic.nix
blob: a784bc0263613ac5f5ab3bb1e7dddfe3f16ebedc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, cmake
, version, src, patches ? [ ]
, ...
}:

stdenv.mkDerivation {
  pname = "msgpack";
  inherit version;

  inherit src patches;

  nativeBuildInputs = [ cmake ];

  cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DMSGPACK_BUILD_EXAMPLES=OFF";

  meta = with lib; {
    description = "MessagePack implementation for C and C++";
    homepage    = "https://msgpack.org";
    license     = licenses.asl20;
    maintainers = with maintainers; [ redbaron ];
    platforms   = platforms.all;
  };
}