linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / argus-clients / default.nix
blobcd935a5f5d7d7b732d49b2d89395511cbe36f57f
1 { lib, stdenv, fetchurl, libpcap, bison, flex, cyrus_sasl, tcp_wrappers, pkg-config, perl, libtirpc, libnsl }:
3 stdenv.mkDerivation rec {
4   pname = "argus-clients";
5   version = "3.0.8.2";
7   src = fetchurl {
8     url = "http://qosient.com/argus/src/${pname}-${version}.tar.gz";
9     sha256 = "1c9vj6ma00gqq9h92fg71sxcsjzz912166sdg90ahvnmvmh3l1rj";
10   };
12   NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
14   postPatch = ''
15     for file in ./examples/*/*.pl; do
16       substituteInPlace $file \
17         --subst-var-by PERLBIN ${perl}/bin/perl
18     done
19     '';
21   configureFlags = [ "--with-perl=${perl}/bin/perl" ];
23   nativeBuildInputs = [ pkg-config ];
24   buildInputs = [ libpcap bison cyrus_sasl tcp_wrappers flex libnsl ];
26   meta = with lib; {
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;
42   };