nixpkgs/pkgs/tools/networking/ifstat-legacy/default.nix

31 lines
879 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, net-snmp }:
2017-09-18 10:25:20 +00:00
stdenv.mkDerivation rec {
pname = "ifstat-legacy";
2017-09-18 10:25:20 +00: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 10:25:20 +00: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
'';
meta = with lib; {
2017-09-18 10:25:20 +00:00
description = "Report network interfaces bandwith just like vmstat/iostat do for other system counters - legacy version";
homepage = "http://gael.roualland.free.fr/ifstat/";
2017-09-18 10:25:20 +00:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
license = licenses.gpl2;
};
}