nload: init at 0.7.4

Built and tested locally.

nload is a console application which monitors network traffic and
bandwidth usage in real time. It visualizes the in- and outgoing traffic
using two graphs and provides additional info like total amount of
transfered [sic] data and min/max networking usage.
This commit is contained in:
devhell 2015-10-03 11:29:51 +01:00
parent f7d5210677
commit c412e048b5
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
version = "0.7.4";
name = "nload-${version}";
src = fetchurl {
url = "http://www.roland-riegel.de/nload/${name}.tar.gz";
sha256 = "1rb9skch2kgqzigf19x8bzk211jdfjfdkrcvaqyj89jy2pkm3h61";
};
buildInputs = [ ncurses ];
meta = {
description = "Monitors network traffic and bandwidth usage with ncurses graphs";
longDescription = ''
nload is a console application which monitors network traffic and
bandwidth usage in real time. It visualizes the in- and outgoing traffic
using two graphs and provides additional info like total amount of
transfered data and min/max network usage.
'';
homepage = http://www.roland-riegel.de/nload/index.html;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.devhell ];
};
}

View file

@ -12117,6 +12117,8 @@ let
ncmpcpp = callPackage ../applications/audio/ncmpcpp { };
nload = callPackage ../applications/networking/nload { };
normalize = callPackage ../applications/audio/normalize { };
mplayer = callPackage ../applications/video/mplayer ({