Add Jnettop, a network traffic visualizer.

svn path=/nixpkgs/trunk/; revision=13564
This commit is contained in:
Ludovic Courtès
2008-12-03 14:22:55 +00:00
parent cf6908d2f9
commit e442925ccd
3 changed files with 46 additions and 0 deletions
+28
View File
@@ -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+";
};
}