diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-27 00:37:38 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-27 00:49:51 +0100 |
commit | e16f76fae29cc88e7d8b7b65dd53e9216eb5cd24 (patch) | |
tree | 127376fcc5f7dd50b3618389fb02677b24ef7d8a | |
parent | c9cd97c872662d5ac4fb2b815fb3c1372ba9f624 (diff) |
gnu: radeontop: Update to 1.4.
* gnu/packages/linux.scm (radeontop): Update to 1.4.
[arguments]: Don't explicitly return #t from phases.
-rw-r--r-- | gnu/packages/linux.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8b22666b11..7761cd1fe3 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -6488,7 +6488,7 @@ developers.") (define-public radeontop (package (name "radeontop") - (version "1.3") + (version "1.4") (source (origin (method git-fetch) @@ -6497,7 +6497,7 @@ developers.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0ay6vl9zsz9b2scy0fnsy482pzizj52i27syxwny4z4i9wrk2wmn")))) + (base32 "0kwqddidr45s1blp0h8r8h1dd1p50l516yb6mb4s6zsc827xzgg3")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -6507,8 +6507,7 @@ developers.") (lambda _ (substitute* "getver.sh" (("ver=unknown") - (string-append "ver=" ,version))) - #t)) + (string-append "ver=" ,version))))) (delete 'configure)) ; no configure script #:make-flags (list "CC=gcc" (string-append "PREFIX=" %output)) |