nixpkgs-suyu/pkgs/development/libraries/libmsgpack/generic.nix

31 lines
761 B
Nix
Raw Normal View History

2015-03-10 19:44:59 +01:00
{ stdenv, cmake
, version, src, patches ? [ ]
, hostPlatform
2015-03-10 19:44:59 +01:00
, ...
}:
stdenv.mkDerivation rec {
name = "libmsgpack-${version}";
inherit src patches;
nativeBuildInputs = [ cmake ];
2017-10-11 11:54:53 +02:00
enableParallelBuilding = true;
cmakeFlags = []
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"-DMSGPACK_BUILD_EXAMPLES=OFF"
++ stdenv.lib.optional (hostPlatform.libc == "msvcrt")
"-DCMAKE_SYSTEM_NAME=Windows"
;
2015-03-10 19:44:59 +01:00
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";
2018-05-01 05:03:23 +02:00
homepage = https://msgpack.org;
2017-10-11 11:54:53 +02:00
license = licenses.asl20;
2015-03-10 19:44:59 +01:00
maintainers = with maintainers; [ redbaron wkennington ];
2017-10-11 11:54:53 +02:00
platforms = platforms.all;
2015-03-10 19:44:59 +01:00
};
}