mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-02 17:09:09 +03:00
21 lines
424 B
Nix
21 lines
424 B
Nix
{ stdenv, cmake
|
|
, version, src, patches ? [ ]
|
|
, ...
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmsgpack-${version}";
|
|
|
|
inherit src patches;
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "MessagePack implementation for C and C++";
|
|
homepage = http://msgpack.org;
|
|
maintainers = with maintainers; [ redbaron wkennington ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|