diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-07-05 19:25:59 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-07-05 19:41:04 +0300 |
commit | 445b6f5123e0057bc5277f7613602919d07c14c3 (patch) | |
tree | ec0f3e224b5b37ac46d473c5e230c12b42f49b0d | |
parent | 977e1c16444a7c2e7f0d8b444ca035a4276d46e3 (diff) |
gnu: nethogs: Modernize the package.
* gnu/packages/networking.scm (nethogs): Modernize the package.
[arguments]: Use GEXPs.
Change-Id: I552fc343f9125f38601588a01bcfe04e534bf5ea
-rw-r--r-- | gnu/packages/networking.scm | 10 |
1 files 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 |