From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raimon Grau Subject: Add nload package Date: Thu, 10 Mar 2016 12:33:27 +0000 Message-ID: <87pov2ecmg.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1adzma-0004F1-46 for guix-devel@gnu.org; Thu, 10 Mar 2016 07:33:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1adzmV-0000Le-Su for guix-devel@gnu.org; Thu, 10 Mar 2016 07:33:36 -0500 Received: from mail-wm0-x22c.google.com ([2a00:1450:400c:c09::22c]:36974) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1adzmV-0000LZ-Lz for guix-devel@gnu.org; Thu, 10 Mar 2016 07:33:31 -0500 Received: by mail-wm0-x22c.google.com with SMTP id p65so26558892wmp.0 for ; Thu, 10 Mar 2016 04:33:31 -0800 (PST) Received: from singularity (110.Red-83-46-130.dynamicIP.rima-tde.net. [83.46.130.110]) by smtp.gmail.com with ESMTPSA id ux5sm3329943wjc.17.2016.03.10.04.33.29 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 10 Mar 2016 04:33:29 -0800 (PST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hi guixers, I created a package definition for nload. Comments are very welcome. Cheers, Rai --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-Add-nload-0.7.4.patch Content-Description: add nload >From 5a6300c447843b08a70311be867007e1daa5b58b Mon Sep 17 00:00:00 2001 From: Raimon Grau Date: Thu, 10 Mar 2016 12:26:11 +0000 Subject: [PATCH] gnu: Add nload 0.7.4. * gnu/packages/networking.scm (nload): New variable. --- gnu/packages/networking.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e731183..49403c1 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -187,3 +187,26 @@ needed/wanted real-time traffic statistics of multiple network interfaces, with a simple and efficient view on the command line. It is intended as a substitute for the PPPStatus and EthStatus projects.") (license license:gpl2+))) + +(define-public nload + (package + (name "nload") + (version "0.7.4") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/nload/nload" + version ".tar.gz")) + (sha256 + (base32 + "1rb9skch2kgqzigf19x8bzk211jdfjfdkrcvaqyj89jy2pkm3h61")))) + (build-system gnu-build-system) + (inputs `(("ncurses" ,ncurses))) + (home-page "http://www.roland-riegel.de/nload/") + (synopsis "Realtime console network usage monitor") + (description + "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.") + (license license:gpl2))) + -- 2.6.3 --=-=-=--