2015-11-14 20:32:51 +00:00
|
|
|
{stdenv, fetchurl, flex, bison, libpcap, libdnet, libnfnetlink, libnetfilter_queue}:
|
2013-05-30 14:05:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-26 02:49:14 +00:00
|
|
|
name = "daq-2.2.2";
|
2015-05-22 19:41:59 +01:00
|
|
|
|
2013-05-30 14:05:39 +01:00
|
|
|
src = fetchurl {
|
|
|
|
name = "${name}.tar.gz";
|
2016-05-21 08:08:36 +01:00
|
|
|
url = "https://snort.org/downloads/archive/snort/${name}.tar.gz";
|
2018-02-26 02:49:14 +00:00
|
|
|
sha256 = "0yvzscy7vqj7s5rccza0f7p6awghfm3yaxihx1h57lqspg51in3w";
|
2013-05-30 14:05:39 +01:00
|
|
|
};
|
2015-05-22 19:41:59 +01:00
|
|
|
|
2015-11-14 20:32:51 +00:00
|
|
|
buildInputs = [ flex bison libpcap libdnet libnfnetlink libnetfilter_queue];
|
|
|
|
|
|
|
|
configureFlags = "--enable-nfq-module=yes --with-dnet-includes=${libdnet}/includes --with-dnet-libraries=${libdnet}/lib";
|
2015-05-22 19:41:59 +01:00
|
|
|
|
2013-05-30 14:05:39 +01:00
|
|
|
meta = {
|
|
|
|
description = "Data AcQuisition library (DAQ), for packet I/O";
|
|
|
|
homepage = http://www.snort.org;
|
2014-09-24 09:43:51 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ aycanirican ];
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2013-05-30 14:05:39 +01:00
|
|
|
};
|
|
|
|
}
|