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

21 lines
619 B
Nix
Raw Normal View History

2013-05-30 13:05:39 +00:00
{stdenv, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison}:
stdenv.mkDerivation rec {
2014-11-27 07:57:59 +00:00
name = "snort-2.9.7.0";
2013-05-30 13:05:39 +00:00
src = fetchurl {
name = "${name}.tar.gz";
2014-08-31 11:27:15 +00:00
url = "http://www.snort.org/downloads/snort/${name}.tar.gz";
2014-11-27 07:57:59 +00:00
sha256 = "16z4mi7bri7ygvc0j4hhl2pgcw6xwxah1h3wk5vpy2yj8pmayf4p";
2013-05-30 13:05:39 +00:00
};
buildInputs = [ libpcap pcre libdnet daq zlib flex bison ];
meta = {
description = "Network intrusion prevention and detection system (IDS/IPS)";
2013-05-30 13:05:39 +00:00
homepage = http://www.snort.org;
2014-09-24 08:43:51 +00:00
maintainers = with stdenv.lib.maintainers; [ aycanirican ];
license = stdenv.lib.licenses.gpl2;
2013-05-30 13:05:39 +00:00
};
}