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

21 lines
554 B
Nix
Raw Normal View History

2013-05-30 13:05:39 +00:00
{stdenv, fetchurl, flex, bison, libpcap}:
stdenv.mkDerivation rec {
2014-11-27 07:57:59 +00:00
name = "daq-2.0.4";
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";
2014-11-27 07:57:59 +00:00
sha256 = "0g15kny0s6mpqfc723jxv7mgjfh45izhwcidhjzh52fd04ysm552";
2013-05-30 13:05:39 +00:00
};
buildInputs = [ flex bison libpcap ];
meta = {
description = "Data AcQuisition library (DAQ), for packet I/O";
homepage = http://www.snort.org;
2014-09-24 08:43:51 +00:00
maintainers = with stdenv.lib.maintainers; [ aycanirican ];
license = stdenv.lib.licenses.gpl2;
2013-05-30 13:05:39 +00:00
};
}