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-11-02 20:22:30 +00:00
|
|
|
name = "bro-2.4.1";
|
2016-08-06 15:02:57 +01:00
|
|
|
|
2013-05-30 17:13:50 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.bro.org/downloads/release/${name}.tar.gz";
|
2015-11-02 20:22:30 +00:00
|
|
|
sha256 = "1xn8qwgnxihlr4lmg7kz2vqjk46aqgwc8878pbv30ih2lmrrdffq";
|
2013-05-30 17:13:50 +01:00
|
|
|
};
|
2016-08-06 15:02:57 +01:00
|
|
|
|
|
|
|
buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ];
|
2013-05-30 17:13:50 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-08-06 15:02:57 +01:00
|
|
|
|
2014-09-27 18:33:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 15:22:46 +01:00
|
|
|
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 ];
|
2016-08-06 15:02:57 +01:00
|
|
|
platforms = with platforms; linux;
|
2013-05-30 17:13:50 +01:00
|
|
|
};
|
|
|
|
}
|