3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/ids/bro/default.nix

24 lines
705 B
Nix
Raw Normal View History

2015-06-29 11:50:08 +01:00
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl
, geoip, gperftools }:
2013-05-30 17:13:50 +01:00
stdenv.mkDerivation rec {
2015-06-29 11:50:08 +01:00
name = "bro-2.4";
2013-05-30 17:13:50 +01:00
src = fetchurl {
url = "http://www.bro.org/downloads/release/${name}.tar.gz";
2015-06-29 11:50:08 +01:00
sha256 = "1ch8w8iakr2ajbigaad70b6mfv01s2sbdqgmrqm9q9zc1c5hs33l";
2013-05-30 17:13:50 +01:00
};
2015-06-29 11:50:08 +01:00
buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip
gperftools ];
2013-05-30 17:13:50 +01:00
enableParallelBuilding = true;
2014-09-27 18:33:19 +01:00
meta = with stdenv.lib; {
description = "Powerful network analysis framework that is much different from the typical IDS you may know";
2013-05-30 17:13:50 +01:00
homepage = http://www.bro.org/;
2014-09-27 18:33:19 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ pSub ];
2013-05-30 17:13:50 +01:00
};
}