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

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