summary refs log tree commit diff
path: root/pkgs/applications/networking/ids/bro/default.nix
blob: c3641903a75581aee68a1b5a211937587a6e4120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl, geoip, gperftools }:

stdenv.mkDerivation rec {
  name = "bro-2.3.2";
  
  src = fetchurl {
    url = "http://www.bro.org/downloads/release/${name}.tar.gz";
    sha256 = "16y6924brh7sw6l0nry6y4q8sif2lkcpymkd26aabdc61bdgpr9g";
  };
  
  buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ];

  enableParallelBuilding = true;
  
  meta = with stdenv.lib; {
    description = "Powerful network analysis framework that is much different from the typical IDS you may know";
    homepage = http://www.bro.org/;
    license = licenses.bsd3;
    maintainers = with maintainers; [ pSub ];
  };
}