2017-07-10 20:02:07 +02:00
|
|
|
{ fetchurl, fetchpatch, stdenv, autoconf, libpcap, ncurses, pkgconfig, glib }:
|
2008-12-03 15:22:55 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2008-12-03 15:22:55 +01:00
|
|
|
name = "jnettop-0.13.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://jnettop.kubs.info/dist/jnettop-0.13.0.tar.gz";
|
|
|
|
sha256 = "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9";
|
|
|
|
};
|
|
|
|
|
2019-05-07 03:25:18 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf ];
|
|
|
|
buildInputs = [ libpcap ncurses glib ];
|
2008-12-03 15:22:55 +01:00
|
|
|
|
2017-07-10 20:02:07 +02:00
|
|
|
patches = [
|
|
|
|
./no-dns-resolution.patch
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sources.debian.net/data/main/j/jnettop/0.13.0-1/debian/patches/0001-Use-64-bit-integers-for-byte-totals-support-bigger-u.patch";
|
|
|
|
sha256 = "1b0alc12sj8pzcb66f8xslbqlbsvq28kz34v6jfhbb1q25hyr7jg";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2008-12-03 15:22:55 +01:00
|
|
|
preConfigure = '' autoconf '';
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Network traffic visualizer";
|
2008-12-03 15:22:55 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://jnettop.kubs.info/";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-12-03 15:22:55 +01:00
|
|
|
};
|
|
|
|
}
|