bro: Broken on Darwin

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

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