argus-clients: init at 3.0.8.2

This commit is contained in:
Michiel Leenaars 2016-08-10 23:02:04 +02:00
parent 4d2ef926b5
commit 378c7a26af
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv, fetchurl, libpcap, bison, flex, cyrus_sasl, tcp_wrappers, pkgconfig, perl }:
stdenv.mkDerivation rec {
pname = "argus-clients";
version = "3.0.8.2";
name = "${pname}-${version}";
src = fetchurl {
url = "http://qosient.com/argus/src/${name}.tar.gz";
sha256 = "1c9vj6ma00gqq9h92fg71sxcsjzz912166sdg90ahvnmvmh3l1rj";
};
patchPhase = ''
for file in ./examples/*/*.pl; do
substituteInPlace $file \
--subst-var-by PERLBIN ${perl}/bin/perl
done
'';
configureFlags = "--with-perl=${perl}/bin/perl";
buildInputs = [ libpcap pkgconfig bison cyrus_sasl tcp_wrappers flex ];
meta = with stdenv.lib; {
description = "Clients for ARGUS";
longDescription = ''Clients for Audit Record Generation and
Utilization System (ARGUS). The Argus Project is focused on developing all
aspects of large scale network situtational awareness derived from
network activity audit. Argus, itself, is next-generation network
flow technology, processing packets, either on the wire or in
captures, into advanced network flow data. The data, its models,
formats, and attributes are designed to support Network
Operations, Performance and Security Management. If you need to
know what is going on in your network, right now or historically,
you will find Argus a useful tool. '';
homepage = http://qosient.com/argus;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ leenaars ];
platforms = platforms.linux;
};
}

View file

@ -422,6 +422,8 @@ in
argus = callPackage ../tools/networking/argus {};
argus-clients = callPackage ../tools/networking/argus-clients {};
argtable = callPackage ../tools/misc/argtable {};
argyllcms = callPackage ../tools/graphics/argyllcms {};