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

24 lines
742 B
Nix
Raw Normal View History

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