nixpkgs/pkgs/tools/networking/nethogs/default.nix
Robert Helgesson b4f03263ec nethogs: 0.8.1-git -> 0.8.1
Also use fetchFromGitHub, use make flags instead of patching Makefile,
and add myself as maintainer since the package is unmaintained.
2016-01-14 20:49:20 +01:00

35 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, ncurses, libpcap }:
stdenv.mkDerivation rec {
name = "nethogs-${version}";
version = "0.8.1";
src = fetchFromGitHub {
owner = "raboof";
repo = "nethogs";
rev = "v${version}";
sha256 = "1phn6i44ysvpl1f54bx4dspy51si8rc2wq6fywi163mi25j355d4";
};
buildInputs = [ ncurses libpcap ];
installFlags = [ "prefix=$(out)" "sbin=$(prefix)/bin" ];
meta = with stdenv.lib; {
description = "A small 'net top' tool, grouping bandwidth by process";
longDescription = ''
NetHogs is a small 'net top' tool. Instead of breaking the traffic down
per protocol or per subnet, like most tools do, it groups bandwidth by
process. NetHogs does not rely on a special kernel module to be loaded.
If there's suddenly a lot of network traffic, you can fire up NetHogs
and immediately see which PID is causing this. This makes it easy to
identify programs that have gone wild and are suddenly taking up your
bandwidth.
'';
license = licenses.gpl2Plus;
homepage = http://nethogs.sourceforge.net/;
platforms = platforms.linux;
maintainer = [ maintainers.rycee ];
};
}