summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2016-08-10 23:02:04 +0200
committerMichiel Leenaars <ml.software@leenaa.rs>2016-08-24 00:13:38 +0200
commit378c7a26afdeeccb303a4d71bcc009e544982d42 (patch)
treed33974f1d571bfe9aac4842f96502834417ade7a /pkgs/tools/networking
parent4d2ef926b5c056d81409ef247a9947935c7d4024 (diff)
downloadnixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.tar
nixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.tar.gz
nixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.tar.bz2
nixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.tar.lz
nixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.tar.xz
nixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.tar.zst
nixlib-378c7a26afdeeccb303a4d71bcc009e544982d42.zip
argus-clients: init at 3.0.8.2
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/argus-clients/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/networking/argus-clients/default.nix b/pkgs/tools/networking/argus-clients/default.nix
new file mode 100644
index 000000000000..fe30a1eab826
--- /dev/null
+++ b/pkgs/tools/networking/argus-clients/default.nix
@@ -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;
+  };
+}