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

28 lines
820 B
Nix
Raw Normal View History

2021-01-15 06:42:41 +01:00
{ lib, stdenv, fetchurl, flex, bison, libpcap, libdnet, libnfnetlink, libnetfilter_queue}:
2013-05-30 15:05:39 +02:00
stdenv.mkDerivation rec {
name = "daq-2.2.2";
2013-05-30 15:05:39 +02:00
src = fetchurl {
name = "${name}.tar.gz";
2016-05-21 09:08:36 +02:00
url = "https://snort.org/downloads/archive/snort/${name}.tar.gz";
sha256 = "0yvzscy7vqj7s5rccza0f7p6awghfm3yaxihx1h57lqspg51in3w";
2013-05-30 15:05:39 +02:00
};
buildInputs = [ flex bison libpcap libdnet libnfnetlink libnetfilter_queue];
2018-07-25 23:44:21 +02:00
configureFlags = [
"--enable-nfq-module=yes"
"--with-dnet-includes=${libdnet}/includes"
"--with-dnet-libraries=${libdnet}/lib"
];
2013-05-30 15:05:39 +02:00
meta = {
description = "Data AcQuisition library (DAQ), for packet I/O";
homepage = "https://www.snort.org";
2021-01-15 06:42:41 +01:00
maintainers = with lib.maintainers; [ aycanirican ];
license = lib.licenses.gpl2;
platforms = with lib.platforms; linux;
2013-05-30 15:05:39 +02:00
};
}