2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, ncurses, libpcap, automake, nixosTests }:
|
2009-10-08 08:01:55 +01:00
|
|
|
|
2021-08-01 21:48:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "iftop";
|
|
|
|
version = "1.0pre4";
|
2009-10-08 08:01:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-01 21:48:53 +01:00
|
|
|
url = "http://ex-parrot.com/pdw/iftop/download/iftop-${version}.tar.gz";
|
2015-10-25 00:36:43 +01:00
|
|
|
sha256 = "15sgkdyijb7vbxpxjavh5qm5nvyii3fqcg9mzvw7fx8s6zmfwczp";
|
2009-10-08 08:01:55 +01:00
|
|
|
};
|
|
|
|
|
2013-03-08 08:08:57 +00:00
|
|
|
# Explicitly link against libgcc_s, to work around the infamous
|
|
|
|
# "libgcc_s.so.1 must be installed for pthread_cancel to work".
|
2021-01-15 09:19:50 +00:00
|
|
|
LDFLAGS = lib.optionalString stdenv.isLinux "-lgcc_s";
|
2013-03-08 08:08:57 +00:00
|
|
|
|
2010-10-03 10:18:55 +01:00
|
|
|
preConfigure = ''
|
|
|
|
cp ${automake}/share/automake*/config.{sub,guess} config
|
|
|
|
'';
|
|
|
|
|
2009-10-08 08:01:55 +01:00
|
|
|
buildInputs = [ncurses libpcap];
|
|
|
|
|
2020-04-15 20:59:34 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) iftop; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-07-28 13:04:44 +01:00
|
|
|
description = "Display bandwidth usage on a network interface";
|
|
|
|
longDescription = ''
|
|
|
|
iftop does for network usage what top(1) does for CPU usage. It listens
|
|
|
|
to network traffic on a named interface and displays a table of current
|
|
|
|
bandwidth usage by pairs of hosts.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ex-parrot.com/pdw/iftop/";
|
2015-07-06 01:47:54 +01:00
|
|
|
platforms = platforms.unix;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = [ ];
|
2009-10-08 08:01:55 +01:00
|
|
|
};
|
|
|
|
}
|