mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
23 lines
586 B
Nix
23 lines
586 B
Nix
{ stdenv, fetchurl, cmake}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.9";
|
|
name = "libmsgpack-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/msgpack/msgpack-c/archive/cpp-${version}.tar.gz";
|
|
sha256 = "0xy204srq5grng7p17hwdxpfzbsfrn89gi4c3k62a23p4f9z0szq";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
patches = [ ./CMakeLists.patch ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "MessagePack implementation for C and C++";
|
|
homepage = http://msgpack.org;
|
|
maintainers = [ maintainers.redbaron ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|