add libmsgpack C/C++ library (close #2059)

This commit is contained in:
Maxim Ivanov
2014-03-29 12:28:25 +00:00
committed by Vladimír Čunát
parent 227997d8ca
commit f949a71aac
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{ stdenv, fetchurl, autoconf, automake, libtool, ruby }:
stdenv.mkDerivation rec {
version = "0.5.8";
name = "libmsgpack-${version}";
src = fetchurl {
url = "https://github.com/msgpack/msgpack-c/archive/cpp-${version}.tar.gz";
sha256 = "1h6k9kdbfavmw3by5kk3raszwa64hn9k8yw9rdhvl5m8g2lks89k";
};
buildInputs = [ autoconf automake libtool ruby ];
outputs = [ "out" "lib" ];
preConfigure = "./bootstrap";
postInstall = ''
mkdir -p $lib/lib
mv $out/lib/*.so.* $lib/lib/
'';
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";
homepage = http://msgpack.org;
maintainers = [ maintainers.redbaron ];
license = licenses.asl20;
platforms = platforms.all;
};
}