2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, cmake
|
2015-03-10 18:44:59 +00:00
|
|
|
, version, src, patches ? [ ]
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "msgpack";
|
|
|
|
inherit version;
|
2015-03-10 18:44:59 +00:00
|
|
|
|
|
|
|
inherit src patches;
|
|
|
|
|
2016-09-03 23:24:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DMSGPACK_BUILD_EXAMPLES=OFF";
|
2015-03-10 18:44:59 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-03-10 18:44:59 +00:00
|
|
|
description = "MessagePack implementation for C and C++";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://msgpack.org";
|
2017-10-11 09:54:53 +00:00
|
|
|
license = licenses.asl20;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ redbaron ];
|
2017-10-11 09:54:53 +00:00
|
|
|
platforms = platforms.all;
|
2015-03-10 18:44:59 +00:00
|
|
|
};
|
|
|
|
}
|