2015-02-03 08:47:26 +00:00
|
|
|
{ stdenv, zookeeper, bash }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-11 05:18:49 +00:00
|
|
|
name = "zookeeper_mt-${stdenv.lib.getVersion zookeeper}";
|
2015-02-03 08:47:26 +00:00
|
|
|
|
2019-01-11 05:18:49 +00:00
|
|
|
src = zookeeper.src;
|
2015-02-03 08:47:26 +00:00
|
|
|
|
2019-01-11 05:18:49 +00:00
|
|
|
setSourceRoot = "export sourceRoot=${zookeeper.name}/src/c";
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-overflow" ];
|
2015-02-03 08:47:26 +00:00
|
|
|
|
2019-01-11 05:18:49 +00:00
|
|
|
buildInputs = [ zookeeper bash ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://zookeeper.apache.org;
|
|
|
|
description = "Apache Zookeeper";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.boothead ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|