nixpkgs/pkgs/development/libraries/libmsgpack/generic.nix
Remy Goldschmidt 52545aab7d libmsgpack: fixed mingw32 cross-build
`cmake`, as usual, should be in `nativeBuildInputs` and we need to add a few cmake flags for mingw32 build to succeed.
2016-09-03 18:24:55 -05:00

26 lines
596 B
Nix

{ stdenv, cmake
, version, src, patches ? [ ]
, ...
}:
stdenv.mkDerivation rec {
name = "libmsgpack-${version}";
inherit src patches;
nativeBuildInputs = [ cmake ];
crossAttrs = {
} // stdenv.lib.optionalAttrs (stdenv.cross.libc == "msvcrt") {
cmakeFlags = "-DMSGPACK_BUILD_EXAMPLES=OFF -DCMAKE_SYSTEM_NAME=Windows";
};
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";
homepage = http://msgpack.org;
maintainers = with maintainers; [ redbaron wkennington ];
license = licenses.asl20;
platforms = platforms.all;
};
}