mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
597 B
Nix
22 lines
597 B
Nix
{ stdenv, zookeeper, bash }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zookeeper_mt-${stdenv.lib.getVersion zookeeper}";
|
|
|
|
src = zookeeper.src;
|
|
|
|
setSourceRoot = "export sourceRoot=${zookeeper.name}/src/c";
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.isDarwin) "-Wno-error=format-overflow -Wno-error=stringop-truncation";
|
|
|
|
buildInputs = [ zookeeper bash ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://zookeeper.apache.org";
|
|
description = "Apache Zookeeper";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.boothead ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|