GNU bug report logs - #73606
[PATCH] gnu: Add nettop.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Wed, 2 Oct 2024 20:48:02 UTC

Severity: normal

Tags: patch

Done: Greg Hogan <code <at> greghogan.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Greg Hogan <code <at> greghogan.com>
Subject: bug#73606: closed (Re: bug#73606: Acknowledgement ([PATCH] gnu:
 Add nettop.))
Date: Fri, 07 Mar 2025 20:43:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#73606: [PATCH] gnu: Add nettop.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 73606 <at> debbugs.gnu.org.

-- 
73606: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=73606
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Greg Hogan <code <at> greghogan.com>
To: 73606-done <at> debbugs.gnu.org
Subject: Re: bug#73606: Acknowledgement ([PATCH] gnu: Add nettop.)
Date: Fri, 7 Mar 2025 15:42:41 -0500
On Wed, Oct 2, 2024 at 4:48 PM GNU bug Tracking System
<help-debbugs <at> gnu.org> wrote:
>
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  guix-patches <at> gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 73606 <at> debbugs.gnu.org.
>
> Please do not send mail to help-debbugs <at> gnu.org unless you wish
> to report a problem with the Bug-tracking system.
>
> --
> 73606: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=73606
> GNU Bug Tracking System
> Contact help-debbugs <at> gnu.org with problems

Pushed as ad01d433adce750282f09c0499285573a538dcaf.

[Message part 3 (message/rfc822, inline)]
From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH] gnu: Add nettop.
Date: Wed,  2 Oct 2024 20:47:14 +0000
* gnu/packages/admin.scm (nettop): New variable.

Change-Id: If4d39d89265dfb568ccf98033ac8e4195bc4c025
---
 gnu/packages/admin.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 5c1b063d26..41abd5cd33 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -3309,6 +3309,45 @@ (define-public iftop
     (home-page "http://www.ex-parrot.com/~pdw/iftop/")
     (license license:gpl2+)))
 
+(define-public nettop
+  (let ((revision "0")
+        (commit "689d6557196e9fcc92cffba82e00fac0386419e5"))
+    (package
+      (name "nettop")
+      (version (git-version "0.5" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Emanem/nettop")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0f6qkj4p4c0gap16ncnhkm802vi6dr7z9rjfz7gzvzhm7jg08aj8"))
+         (modules '((guix build utils)))
+         (snippet
+          #~(begin
+             (substitute* "Makefile"
+               (("-lcurses" _) "-lncurses"))))))
+      (build-system gnu-build-system)
+      (arguments
+       (list
+        #:tests? #f                     ; no make check
+        #:make-flags #~(list "release")
+        #:phases
+        #~(modify-phases %standard-phases
+            (delete 'configure)         ; no configure script
+            (replace 'install           ; no install target
+              (lambda _
+                (let ((out (string-append #$output "/bin")))
+                 (install-file "nettop" out)))))))
+      (inputs (list libpcap ncurses))
+      (synopsis "Monitor network usage by process and host")
+      (description "nettop is a traffic visualizer for the terminal that
+summarizes network bandwidth by process and remote host.")
+      (home-page "https://github.com/Emanem/nettop")
+      (license license:gpl3+))))
+
 (define-public munge
   (package
     (name "munge")

base-commit: 6590f5c5cd30c4dcdb4309b1a7884cd9d0a4ae4d
-- 
2.46.1




This bug report was last modified 78 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.