summary refs log tree commit diff
path: root/pkgs/applications/networking/ids
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-08-27 04:47:22 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-08-28 00:54:43 +0200
commit80848ce10d03c4462a3353299db4a98e0b87fcc9 (patch)
tree9471763f347427e0d3f45e584a3b83abcd360712 /pkgs/applications/networking/ids
parent26f10adfa932cac91b180c57bb084096ff98c66f (diff)
downloadnixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.tar
nixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.tar.gz
nixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.tar.bz2
nixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.tar.lz
nixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.tar.xz
nixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.tar.zst
nixlib-80848ce10d03c4462a3353299db4a98e0b87fcc9.zip
bro: 2.5 -> 2.5.1
Diffstat (limited to 'pkgs/applications/networking/ids')
-rw-r--r--pkgs/applications/networking/ids/bro/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/ids/bro/default.nix b/pkgs/applications/networking/ids/bro/default.nix
index 4117d409b935..f3962811a8ac 100644
--- a/pkgs/applications/networking/ids/bro/default.nix
+++ b/pkgs/applications/networking/ids/bro/default.nix
@@ -1,20 +1,21 @@
 {stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl
-, geoip, gperftools, python }:
+, geoip, gperftools, python, swig }:
 
 stdenv.mkDerivation rec {
-  name = "bro-2.5";
+  name = "bro-2.5.1";
 
   src = fetchurl {
     url = "http://www.bro.org/downloads/${name}.tar.gz";
-    sha256 = "10603lwhwsmh08m5rgknbspbhd4lis71qv7z8ixacgv6sf8a40hm";
+    sha256 = "04cmm0vs8q31mgaq3pxybjk834py3ji16qp4qcir7vjbhq1fav1c";
   };
 
-  buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools python ];
+  nativeBuildInputs = [ cmake flex bison file ];
+  buildInputs = [ openssl libpcap perl zlib curl geoip gperftools python swig ];
 
   enableParallelBuilding = true;
 
   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 much different from a typical IDS";
     homepage = https://www.bro.org/;
     license = licenses.bsd3;
     maintainers = with maintainers; [ pSub ];