diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-05-08 02:28:09 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-05-08 02:31:58 +0200 |
commit | 4d36a278873249020eae0a809b2eaa2bcdd5fe9a (patch) | |
tree | bc3c92a8bf7d96d77d2098bf81c5677b6bdf8e00 /gnu/packages/linux.scm | |
parent | bdb9b4e8d3ebbc50f4725af12d91df300de05d15 (diff) | |
download | guix-4d36a278873249020eae0a809b2eaa2bcdd5fe9a.tar guix-4d36a278873249020eae0a809b2eaa2bcdd5fe9a.tar.gz |
gnu: powertop: Update to 2.12.
* gnu/packages/linux.scm (powertop): Update to 2.12.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2d31444ea6..bf87262f9a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -2295,14 +2295,14 @@ devices. It replaces @code{iwconfig}, which is deprecated.") (define-public powertop (package (name "powertop") - (version "2.11") + (version "2.12") (source (origin (method url-fetch) (uri (string-append "https://01.org/sites/default/files/downloads/" - "powertop-v" version "-1-g7ef7f79.tar_0.gz")) + "powertop-" version ".tar.gz")) (sha256 - (base32 "0kynypj5cydfbma0ssblq1k4m1arixc1s2vf0ybv8y2gg09wjs5f")))) + (base32 "1kiiwa5p2r7h1lzcf53xq61ckaa4wk565s9fs6vw4bfk84y3mfsw")))) (build-system gnu-build-system) (arguments '(#:phases |