nixpkgs/pkgs/applications/networking/ids/bro/default.nix

25 lines
760 B
Nix
Raw Normal View History

2015-06-29 12:50:08 +02:00
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl
2017-08-27 04:47:22 +02:00
, geoip, gperftools, python, swig }:
2013-05-30 18:13:50 +02:00
stdenv.mkDerivation rec {
2017-10-21 23:57:45 +02:00
name = "bro-2.5.2";
2013-05-30 18:13:50 +02:00
src = fetchurl {
2016-11-18 12:23:50 +01:00
url = "http://www.bro.org/downloads/${name}.tar.gz";
2017-10-21 23:57:45 +02:00
sha256 = "0w5rynw278nl6pdl5s7gsmxjwkl6z1g5pcm6byg930k26yyb35db";
2013-05-30 18:13:50 +02:00
};
2017-08-27 04:47:22 +02:00
nativeBuildInputs = [ cmake flex bison file ];
buildInputs = [ openssl libpcap perl zlib curl geoip gperftools python swig ];
2013-05-30 18:13:50 +02:00
enableParallelBuilding = true;
2014-09-27 19:33:19 +02:00
meta = with stdenv.lib; {
2017-08-27 04:47:22 +02:00
description = "Powerful network analysis framework much different from a typical IDS";
homepage = https://www.bro.org/;
2014-09-27 19:33:19 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
2013-05-30 18:13:50 +02:00
};
}