summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/nload
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-10-03 11:29:51 +0100
committerdevhell <^@regexmail.net>2015-10-03 11:29:51 +0100
commitc412e048b55f63dd6a92d8ca193c6ef7288d8dad (patch)
treef50730c988eed771d68c36789c5a34f3725c99c8 /pkgs/applications/networking/nload
parentf7d5210677e2869ecf83e80ad14cd01e99d8c67e (diff)
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.
Diffstat (limited to 'pkgs/applications/networking/nload')
-rw-r--r--pkgs/applications/networking/nload/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/networking/nload/default.nix b/pkgs/applications/networking/nload/default.nix
new file mode 100644
index 000000000000..f3faa0128bb5
--- /dev/null
+++ b/pkgs/applications/networking/nload/default.nix
@@ -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 ];
+ };
+}