libmsgpack: house keeping
This commit is contained in:
parent
cfafd6f5a8
commit
ce2d9bac9f
@ -11,16 +11,21 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
crossAttrs = {
|
crossAttrs = {
|
||||||
} // stdenv.lib.optionalAttrs (hostPlatform.libc == "msvcrt") {
|
} // stdenv.lib.optionalAttrs (hostPlatform.libc == "msvcrt") {
|
||||||
cmakeFlags = "-DMSGPACK_BUILD_EXAMPLES=OFF -DCMAKE_SYSTEM_NAME=Windows";
|
cmakeFlags = [
|
||||||
|
"-DMSGPACK_BUILD_EXAMPLES=OFF"
|
||||||
|
"-DCMAKE_SYSTEM_NAME=Windows"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "MessagePack implementation for C and C++";
|
description = "MessagePack implementation for C and C++";
|
||||||
homepage = http://msgpack.org;
|
homepage = http://msgpack.org;
|
||||||
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ redbaron wkennington ];
|
maintainers = with maintainers; [ redbaron wkennington ];
|
||||||
license = licenses.asl20;
|
platforms = platforms.all;
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user