1 { lib, stdenv, fetchurl, libpcap, bison, flex, cyrus_sasl, tcp_wrappers, pkg-config, perl, libtirpc, libnsl }:
3 stdenv.mkDerivation rec {
4 pname = "argus-clients";
8 url = "http://qosient.com/argus/src/${pname}-${version}.tar.gz";
9 sha256 = "1c9vj6ma00gqq9h92fg71sxcsjzz912166sdg90ahvnmvmh3l1rj";
12 NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
15 for file in ./examples/*/*.pl; do
16 substituteInPlace $file \
17 --subst-var-by PERLBIN ${perl}/bin/perl
21 configureFlags = [ "--with-perl=${perl}/bin/perl" ];
23 nativeBuildInputs = [ pkg-config ];
24 buildInputs = [ libpcap bison cyrus_sasl tcp_wrappers flex libnsl ];
27 description = "Clients for ARGUS";
28 longDescription = ''Clients for Audit Record Generation and
29 Utilization System (ARGUS). The Argus Project is focused on developing all
30 aspects of large scale network situtational awareness derived from
31 network activity audit. Argus, itself, is next-generation network
32 flow technology, processing packets, either on the wire or in
33 captures, into advanced network flow data. The data, its models,
34 formats, and attributes are designed to support Network
35 Operations, Performance and Security Management. If you need to
36 know what is going on in your network, right now or historically,
37 you will find Argus a useful tool. '';
38 homepage = "http://qosient.com/argus";
39 license = licenses.gpl2Plus;
40 maintainers = with maintainers; [ leenaars ];
41 platforms = platforms.linux;