2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, net-snmp }:
|
2017-09-18 11:25:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ifstat-legacy";
|
2017-09-18 11:25:20 +01:00
|
|
|
version = "1.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://gael.roualland.free.fr/ifstat/ifstat-${version}.tar.gz";
|
|
|
|
sha256 = "01zmv6vk5kh5xmd563xws8a1qnxjb6b6kv59yzz9r3rrghxhd6c5";
|
|
|
|
};
|
|
|
|
|
2019-12-21 22:44:50 +00:00
|
|
|
buildInputs = [ net-snmp ];
|
2017-09-18 11:25:20 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mv $out/bin/ifstat $out/bin/ifstat-legacy
|
|
|
|
mv $out/share/man/man1/ifstat.1 $out/share/man/man1/ifstat-legacy.1
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-18 11:25:20 +01:00
|
|
|
description = "Report network interfaces bandwith just like vmstat/iostat do for other system counters - legacy version";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gael.roualland.free.fr/ifstat/";
|
2017-09-18 11:25:20 +01:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|