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

21 lines
554 B
Nix
Raw Normal View History

2013-05-30 06:05:39 -07:00
{stdenv, fetchurl, flex, bison, libpcap}:
stdenv.mkDerivation rec {
2014-11-26 23:57:59 -08:00
name = "daq-2.0.4";
2013-05-30 06:05:39 -07:00
src = fetchurl {
name = "${name}.tar.gz";
2014-08-31 04:27:15 -07:00
url = "http://www.snort.org/downloads/snort/${name}.tar.gz";
2014-11-26 23:57:59 -08:00
sha256 = "0g15kny0s6mpqfc723jxv7mgjfh45izhwcidhjzh52fd04ysm552";
2013-05-30 06:05:39 -07:00
};
buildInputs = [ flex bison libpcap ];
meta = {
description = "Data AcQuisition library (DAQ), for packet I/O";
homepage = http://www.snort.org;
2014-09-24 01:43:51 -07:00
maintainers = with stdenv.lib.maintainers; [ aycanirican ];
license = stdenv.lib.licenses.gpl2;
2013-05-30 06:05:39 -07:00
};
}