nixpkgs/pkgs/development/libraries/libmsgpack/generic.nix
John Ericson 507a64cd8d libmsgpack: Remove crossAttrs
Just set cmakeFlags directly. Also improve conditions.
2018-05-10 14:19:38 -04:00

31 lines
761 B
Nix

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