guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 445b6f5123e0057bc5277f7613602919d07c14c3
Author: Artyom V. Poptsov <[email protected]>
AuthorDate: Sat Jul 5 19:25:59 2025 +0300

    gnu: nethogs: Modernize the package.
    
    * gnu/packages/networking.scm (nethogs): Modernize the package.
    [arguments]: Use GEXPs.
    
    Change-Id: I552fc343f9125f38601588a01bcfe04e534bf5ea
---
 gnu/packages/networking.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index af16ebc408..a56bda72f0 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -2903,12 +2903,12 @@ the bandwidth, loss, and other parameters.")
     (inputs
      (list libpcap ncurses))
     (arguments
-     `(#:make-flags `(,,(string-append "CC=" (cc-for-target))
-                      ,(string-append "PREFIX=" %output)
-                      ,(string-append "VERSION=" ,version))
+     (list #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+                                (string-append "PREFIX=" #$output)
+                                (string-append "VERSION=" #$version))
        #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))         ; no ./configure script.
+       #~(modify-phases %standard-phases
+           (delete 'configure))))         ; no ./configure script.
     (home-page "https://github.com/raboof/nethogs";)
     (synopsis "Per-process bandwidth monitor")
     (description "NetHogs is a small 'net top' tool for Linux.  Instead of

Reply via email to