From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raimon Grau Subject: Re: Add nload package Date: Thu, 10 Mar 2016 13:06:25 +0000 Message-ID: <87mvq6eb3i.fsf@gmail.com> References: <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]:48636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae0IV-0005kr-Rd for guix-devel@gnu.org; Thu, 10 Mar 2016 08:06:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ae0IQ-0002MR-2M for guix-devel@gnu.org; Thu, 10 Mar 2016 08:06:35 -0500 Received: from mail-wm0-x233.google.com ([2a00:1450:400c:c09::233]:38778) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae0IP-0002M8-PW for guix-devel@gnu.org; Thu, 10 Mar 2016 08:06:30 -0500 Received: by mail-wm0-x233.google.com with SMTP id l68so27791118wml.1 for ; Thu, 10 Mar 2016 05:06:29 -0800 (PST) In-reply-to: <87pov2ecmg.fsf@gmail.com> 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: Raimon Grau Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain Raimon Grau writes: > Hi guixers, > > I created a package definition for nload. > > Comments are very welcome. > > Cheers, > > Rai Ooops, There was a typo in there. This should be the right one. Cheers, Rai --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-Add-nload-0.7.4.patch Content-Description: Add nload >From 092c01d3300c17edf0e9bbe95f87ae093072143d Mon Sep 17 00:00:00 2001 From: Raimon Grau Date: Thu, 10 Mar 2016 12:47:56 +0000 Subject: [PATCH] gnu: Add nload 0.7.4. * gnu/packages/networking.scm (nload): New variable. --- gnu/packages/networking.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e731183..1df2a8d 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -187,3 +187,25 @@ 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 --=-=-=--