nethogs: 0.8.1 -> 0.8.5

This commit is contained in:
Robert Helgesson 2016-07-13 13:16:19 +02:00
parent a7f87bd518
commit c9b9619636
1 changed files with 6 additions and 4 deletions

View File

@ -2,18 +2,20 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "nethogs-${version}"; name = "nethogs-${version}";
version = "0.8.1"; version = "0.8.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "raboof"; owner = "raboof";
repo = "nethogs"; repo = "nethogs";
rev = "v${version}"; rev = "v${version}";
sha256 = "1phn6i44ysvpl1f54bx4dspy51si8rc2wq6fywi163mi25j355d4"; sha256 = "13plwblwbnyyi40jaqx471gwhln08wm7f0fxyvj1yh3d81k556yx";
}; };
buildInputs = [ ncurses libpcap ]; buildInputs = [ ncurses libpcap ];
installFlags = [ "prefix=$(out)" "sbin=$(prefix)/bin" ]; makeFlags = [ "VERSION=${version}" ];
installFlags = [ "PREFIX=$(out)" "sbin=$(out)/bin" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A small 'net top' tool, grouping bandwidth by process"; description = "A small 'net top' tool, grouping bandwidth by process";
@ -27,7 +29,7 @@ stdenv.mkDerivation rec {
bandwidth. bandwidth.
''; '';
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
homepage = http://nethogs.sourceforge.net/; homepage = "https://github.com/raboof/nethogs#readme";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.rycee ]; maintainers = [ maintainers.rycee ];
}; };