nixpkgs/pkgs/development/libraries/msgpack/generic.nix
John Ericson 0828e2d8c3 treewide: Remove usage of remaining redundant platform compatability stuff
Want to get this out of here for 18.09, so it can be deprecated
thereafter.
2018-08-30 17:20:32 -04:00

30 lines
750 B
Nix

{ stdenv, cmake
, version, src, patches ? [ ]
, ...
}:
stdenv.mkDerivation rec {
name = "msgpack-${version}";
inherit src patches;
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
cmakeFlags = []
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"-DMSGPACK_BUILD_EXAMPLES=OFF"
++ stdenv.lib.optional (stdenv.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;
};
}