summary refs log tree commit diff
path: root/pkgs/tools/networking/jnettop/default.nix
blob: cfeaf47fdf23ecdff0462904839d15070d09f922 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 = "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 = stdenv.lib.licenses.gpl2Plus;
  };
}