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