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

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

  USER="something";

  enableParallelBuilding = true;
  
  meta = {
    description = "Bro is a powerful network analysis framework that is much different from the typical IDS you may know.";
    homepage = http://www.bro.org/;
    license = "BSD";
  };
}