zookeeper_mt: fix build with gcc8
This commit is contained in:
parent
0751c5519e
commit
ba6dff4e88
|
@ -1,20 +1,21 @@
|
||||||
{ stdenv, zookeeper, bash }:
|
{ stdenv, zookeeper, bash }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "zookeeper_mt-${stdenv.lib.getVersion zookeeper}";
|
name = "zookeeper_mt-${stdenv.lib.getVersion zookeeper}";
|
||||||
|
|
||||||
src = zookeeper.src;
|
|
||||||
|
|
||||||
setSourceRoot = "export sourceRoot=${zookeeper.name}/src/c";
|
|
||||||
|
|
||||||
buildInputs = [ zookeeper bash ];
|
src = zookeeper.src;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
setSourceRoot = "export sourceRoot=${zookeeper.name}/src/c";
|
||||||
homepage = http://zookeeper.apache.org;
|
|
||||||
description = "Apache Zookeeper";
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-overflow" ];
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = [ maintainers.boothead ];
|
buildInputs = [ zookeeper bash ];
|
||||||
platforms = platforms.unix;
|
|
||||||
};
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://zookeeper.apache.org;
|
||||||
|
description = "Apache Zookeeper";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.boothead ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue