summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-12-03 14:22:55 +0000
committerLudovic Courtès <ludo@gnu.org>2008-12-03 14:22:55 +0000
commite442925ccd125abecf4a6ea420847465e66a8be9 (patch)
tree4578ff73689dfdb6e108471f09db7e512eea1a1e
parentcf6908d2f964ae604f9224ee5dd0ac268627ed8d (diff)
downloadnixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.tar
nixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.tar.gz
nixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.tar.bz2
nixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.tar.lz
nixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.tar.xz
nixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.tar.zst
nixpkgs-e442925ccd125abecf4a6ea420847465e66a8be9.zip
Add Jnettop, a network traffic visualizer.
svn path=/nixpkgs/trunk/; revision=13564
-rw-r--r--pkgs/tools/networking/jnettop/default.nix28
-rw-r--r--pkgs/tools/networking/jnettop/no-dns-resolution.patch13
-rw-r--r--pkgs/top-level/all-packages.nix5
3 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/tools/networking/jnettop/default.nix b/pkgs/tools/networking/jnettop/default.nix
new file mode 100644
index 00000000000..132d1832a9d
--- /dev/null
+++ b/pkgs/tools/networking/jnettop/default.nix
@@ -0,0 +1,28 @@
+{ fetchurl, stdenv, autoconf, libpcap, ncurses, pkgconfig, glib }:
+
+stdenv.mkDerivation rec {
+  name = "jnettop-0.13.0";
+
+  src = fetchurl {
+    url = "http://jnettop.kubs.info/dist/jnettop-0.13.0.tar.gz";
+    sha256 = "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9";
+  };
+
+  buildInputs = [ autoconf libpcap ncurses pkgconfig glib ];
+
+  patches = [ ./no-dns-resolution.patch ];
+  preConfigure = '' autoconf '';
+
+  meta = {
+    description = "Jnettop, a network traffic visualizer";
+
+    longDescription = ''
+      Jnettop is a traffic visualiser, which captures traffic going
+      through the host it is running from and displays streams sorted
+      by bandwidth they use.
+    '';
+
+    homepage = http://jnettop.kubs.info/;
+    license = "GPLv2+";
+  };
+}
diff --git a/pkgs/tools/networking/jnettop/no-dns-resolution.patch b/pkgs/tools/networking/jnettop/no-dns-resolution.patch
new file mode 100644
index 00000000000..65928a37300
--- /dev/null
+++ b/pkgs/tools/networking/jnettop/no-dns-resolution.patch
@@ -0,0 +1,13 @@
+When built in a chroot, `configure' fails to resolve `localhost'.
+Furthermore that test appears to be useless.
+
+--- jnettop-0.13.0/configure.ac	2006-04-29 15:34:09.000000000 +0200
++++ jnettop-0.13.0/configure.ac	2008-12-03 15:11:28.000000000 +0100
+@@ -63,7 +63,6 @@ AC_NETTOP_CHECK_IN6_ADDR
+ 
+ LDFLAGS="$LDFLAGS $NSL_LIBS $SOCKET_LIBS"
+ 
+-AC_NETTOP_CHECK_WORKING_RESOLVER
+ AC_NETTOP_CHECK_GETHOSTBYADDR_R
+ 
+ AM_PATH_GLIB_2_0(2.0.1,, AC_MSG_ERROR("glib >= 2.0.1 library required"), gthread)
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 4bdb5b0acb5..c8a1cf4b5ab 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -918,6 +918,11 @@ let
     inherit fetchurl stdenv unzip jre;
   };
 
+  jnettop = import ../tools/networking/jnettop {
+    inherit fetchurl stdenv autoconf libpcap ncurses pkgconfig;
+    inherit (gnome) glib;
+  };
+
   jwhois = import ../tools/networking/jwhois {
     inherit fetchurl stdenv;
   };