diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:11 +0200 |
commit | 4275299e1105cc22e86b8f84c73459cc10e74661 (patch) | |
tree | e90a0c88d98ea2b007765d8cdab316846b291a19 | |
parent | 00dcdfd73170cdc89f2f033a5164e452d8b827fe (diff) | |
download | guix-4275299e1105cc22e86b8f84c73459cc10e74661.tar.gz guix-4275299e1105cc22e86b8f84c73459cc10e74661.zip |
gnu: iotop: Rename to iotop-python.
This package is in maintenance mode, and is slower whilst having fewer
features than the C implementation added in a following commit.
* gnu/packages/linux.scm (iotop-python): New variable name of…
(iotop): …this removed variable.
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4664641509..517e3628e7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3183,13 +3183,13 @@ settings.") the command line or a script.") (license license:gpl2+))) -(define-public iotop +(define-public iotop-python ;; The last release is from 2013 and gives a misleading CONFIG_TASK_DELAY_ACCT ;; error on ‘newer’ kernels. (let ((revision "0") (commit "a14256a3ff74eeee59493ac088561f1bafab85a7")) (package - (name "iotop") + (name "iotop-python") (version (git-version "0.6" revision commit)) (source (origin |