Add the zookeeper_mt c library

This commit is contained in:
Ben Ford 2015-02-03 08:47:26 +00:00
parent 12f9ea9773
commit 02301a96db

View File

@ -0,0 +1,20 @@
{ stdenv, zookeeper, bash }:
stdenv.mkDerivation rec {
name = "zookeeper_mt";
src = zookeeper.src;
setSourceRoot = "export sourceRoot=${zookeeper.name}/src/c";
buildInputs = [ zookeeper bash ];
meta = with stdenv.lib; {
homepage = "http://zookeeper.apache.org";
description = "Apache Zookeeper";
license = licenses.asl20;
maintainers = [ maintainers.boothead ];
platforms = platforms.unix;
};
}