1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/networking/ids/bro/default.nix
2015-02-09 12:20:10 +01:00

22 lines
703 B
Nix

{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 ];
};
}