depot/third_party/nixpkgs/pkgs/development/libraries/msgpack/generic.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
537 B
Nix

{ 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;
};
}