From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: Add nload package Date: Thu, 10 Mar 2016 16:53:02 -0500 Message-ID: <20160310215302.GA11339@jasmine> References: <87pov2ecmg.fsf@gmail.com> <87mvq6eb3i.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56164) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae8Vz-0000Ff-23 for guix-devel@gnu.org; Thu, 10 Mar 2016 16:53:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ae8Vv-00062u-Rj for guix-devel@gnu.org; Thu, 10 Mar 2016 16:53:03 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:60028) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae8Vv-00062q-LE for guix-devel@gnu.org; Thu, 10 Mar 2016 16:52:59 -0500 Content-Disposition: inline In-Reply-To: <87mvq6eb3i.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 On Thu, Mar 10, 2016 at 01:06:25PM +0000, Raimon Grau wrote: > 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. Thanks for the patch! I see that the unexpected context in the nethogs patch is from this one. I applied this patch with some minor changes as 951466232. I added a copyright line for you, capitalized the beginning of the description, and simplified the commit message. I also looked at the license headers on the source files. They all say "later version" so I changed gpl2 to gpl2+. > > * 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 >