52545aab7d
`cmake`, as usual, should be in `nativeBuildInputs` and we need to add a few cmake flags for mingw32 build to succeed.
26 lines
596 B
Nix
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;
|
|
};
|
|
}
|