mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
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:
parent
f7d5210677
commit
c412e048b5
27
pkgs/applications/networking/nload/default.nix
Normal file
27
pkgs/applications/networking/nload/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 ({
|
||||
|
Loading…
Reference in New Issue
Block a user