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

21 lines
624 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-08-31 11:27:15 +00:00
name = "snort-2.9.6.2";
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";
sha256 = "0xsxbd5h701ncnhn9sf7zkmzravlqhn1182whinphfjjw72py7cf";
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:24:47 +00:00
maintainers = with self.stdenv.lib.maintainers; [ aycanirican ];
license = stdenv.lib.licenses.gpl2;
2013-05-30 13:05:39 +00:00
};
}