41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{lib, stdenv, pkg-config, luajit, openssl, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison, makeWrapper
|
|
, libtirpc
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.9.18";
|
|
pname = "snort";
|
|
|
|
src = fetchurl {
|
|
name = "${pname}-${version}.tar.gz";
|
|
url = "https://snort.org/downloads/archive/snort/${pname}-${version}.tar.gz";
|
|
sha256 = "0xrc7crchflfrk4x5dq5zx22zkmgcrbkww5r1pvkc3cyyr18cc6h";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ pkg-config luajit openssl libpcap pcre libdnet daq zlib flex bison libtirpc ];
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--disable-static-daq"
|
|
"--enable-control-socket"
|
|
"--with-daq-includes=${daq}/includes"
|
|
"--with-daq-libraries=${daq}/lib"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/snort --add-flags "--daq-dir ${daq}/lib/daq --dynamic-preprocessor-lib-dir $out/lib/snort_dynamicpreprocessor/ --dynamic-engine-lib-dir $out/lib/snort_dynamicengine"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Network intrusion prevention and detection system (IDS/IPS)";
|
|
homepage = "https://www.snort.org";
|
|
maintainers = with lib.maintainers; [ aycanirican ];
|
|
license = lib.licenses.gpl2;
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|