mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
741bf840da
This reverts commitf61176c539
, reversing changes made toa27ca029ee
. Conflicts: pkgs/development/libraries/ncurses/default.nix
22 lines
635 B
Nix
22 lines
635 B
Nix
{stdenv, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.9.7.2";
|
|
name = "snort-${version}";
|
|
|
|
src = fetchurl {
|
|
name = "${name}.tar.gz";
|
|
url = "mirror://sourceforge/snort/${name}.tar.gz";
|
|
sha256 = "1gmlrh9ygpd5h6nnrr4090wk5n2yq2yrvwi7q6xbm6lxj4rcamyv";
|
|
};
|
|
|
|
buildInputs = [ libpcap pcre libdnet daq zlib flex bison ];
|
|
|
|
meta = {
|
|
description = "Network intrusion prevention and detection system (IDS/IPS)";
|
|
homepage = http://www.snort.org;
|
|
maintainers = with stdenv.lib.maintainers; [ aycanirican ];
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|