1{ stdenv, cmake
2, version, src, patches ? [ ]
3, ...
4}:
5
6stdenv.mkDerivation rec {
7 name = "libmsgpack-${version}";
8
9 inherit src patches;
10
11 buildInputs = [ cmake ];
12
13 meta = with stdenv.lib; {
14 description = "MessagePack implementation for C and C++";
15 homepage = http://msgpack.org;
16 maintainers = with maintainers; [ redbaron wkennington ];
17 license = licenses.asl20;
18 platforms = platforms.all;
19 };
20}