bro: Broken on Darwin

http://hydra.nixos.org/build/38312081

+5 -6
+5 -6
pkgs/applications/networking/ids/bro/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 name = "bro-2.4.1"; 6 - 7 src = fetchurl { 8 url = "http://www.bro.org/downloads/release/${name}.tar.gz"; 9 sha256 = "1xn8qwgnxihlr4lmg7kz2vqjk46aqgwc8878pbv30ih2lmrrdffq"; 10 }; 11 - 12 - buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip 13 - gperftools ]; 14 15 enableParallelBuilding = true; 16 - 17 meta = with stdenv.lib; { 18 description = "Powerful network analysis framework that is much different from the typical IDS you may know"; 19 homepage = http://www.bro.org/; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ pSub ]; 22 - platforms = with platforms; unix; 23 }; 24 }
··· 3 4 stdenv.mkDerivation rec { 5 name = "bro-2.4.1"; 6 + 7 src = fetchurl { 8 url = "http://www.bro.org/downloads/release/${name}.tar.gz"; 9 sha256 = "1xn8qwgnxihlr4lmg7kz2vqjk46aqgwc8878pbv30ih2lmrrdffq"; 10 }; 11 + 12 + buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ]; 13 14 enableParallelBuilding = true; 15 + 16 meta = with stdenv.lib; { 17 description = "Powerful network analysis framework that is much different from the typical IDS you may know"; 18 homepage = http://www.bro.org/; 19 license = licenses.bsd3; 20 maintainers = with maintainers; [ pSub ]; 21 + platforms = with platforms; linux; 22 }; 23 }