about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-06 17:02:57 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-06 17:06:45 +0300
commit4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b (patch)
tree8711e02f221cf258ecce2737a900fed965253c19 /pkgs
parentb7933981318d19eb44433bc714285c78998c36f1 (diff)
downloadnixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.tar
nixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.tar.gz
nixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.tar.bz2
nixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.tar.lz
nixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.tar.xz
nixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.tar.zst
nixlib-4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b.zip
bro: Broken on Darwin
http://hydra.nixos.org/build/38312081
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/ids/bro/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/applications/networking/ids/bro/default.nix b/pkgs/applications/networking/ids/bro/default.nix
index 10243e5f1d8e..10cf9874ff1e 100644
--- a/pkgs/applications/networking/ids/bro/default.nix
+++ b/pkgs/applications/networking/ids/bro/default.nix
@@ -3,22 +3,21 @@
 
 stdenv.mkDerivation rec {
   name = "bro-2.4.1";
-  
+
   src = fetchurl {
     url = "http://www.bro.org/downloads/release/${name}.tar.gz";
     sha256 = "1xn8qwgnxihlr4lmg7kz2vqjk46aqgwc8878pbv30ih2lmrrdffq";
   };
-  
-  buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip
-   gperftools ];
+
+  buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ];
 
   enableParallelBuilding = true;
-  
+
   meta = with stdenv.lib; {
     description = "Powerful network analysis framework that is much different from the typical IDS you may know";
     homepage = http://www.bro.org/;
     license = licenses.bsd3;
     maintainers = with maintainers; [ pSub ];
-    platforms = with platforms; unix;
+    platforms = with platforms; linux;
   };
 }