2015-03-10 11:44:59 -07:00
|
|
|
{ stdenv, cmake
|
|
|
|
, version, src, patches ? [ ]
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-17 16:53:33 -07:00
|
|
|
name = "msgpack-${version}";
|
2015-03-10 11:44:59 -07:00
|
|
|
|
|
|
|
inherit src patches;
|
|
|
|
|
2016-09-03 16:24:55 -07:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2017-10-11 02:54:53 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-05-10 09:42:43 -07:00
|
|
|
cmakeFlags = []
|
|
|
|
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
"-DMSGPACK_BUILD_EXAMPLES=OFF"
|
|
|
|
;
|
2015-03-10 11:44:59 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MessagePack implementation for C and C++";
|
2018-04-30 20:03:23 -07:00
|
|
|
homepage = https://msgpack.org;
|
2017-10-11 02:54:53 -07:00
|
|
|
license = licenses.asl20;
|
2019-01-26 02:01:09 -08:00
|
|
|
maintainers = with maintainers; [ redbaron ];
|
2017-10-11 02:54:53 -07:00
|
|
|
platforms = platforms.all;
|
2015-03-10 11:44:59 -07:00
|
|
|
};
|
|
|
|
}
|