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