bro: Broken on Darwin

http://hydra.nixos.org/build/38312081
This commit is contained in:
Tuomas Tynkkynen 2016-08-06 17:02:57 +03:00
parent b793398131
commit 4f398dfd13

View File

@ -3,22 +3,21 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "bro-2.4.1"; name = "bro-2.4.1";
src = fetchurl { src = fetchurl {
url = "http://www.bro.org/downloads/release/${name}.tar.gz"; url = "http://www.bro.org/downloads/release/${name}.tar.gz";
sha256 = "1xn8qwgnxihlr4lmg7kz2vqjk46aqgwc8878pbv30ih2lmrrdffq"; sha256 = "1xn8qwgnxihlr4lmg7kz2vqjk46aqgwc8878pbv30ih2lmrrdffq";
}; };
buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ];
gperftools ];
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Powerful network analysis framework that is much different from the typical IDS you may know"; description = "Powerful network analysis framework that is much different from the typical IDS you may know";
homepage = http://www.bro.org/; homepage = http://www.bro.org/;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];
platforms = with platforms; unix; platforms = with platforms; linux;
}; };
} }