diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-24 21:02:02 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-24 21:29:22 +0100 |
commit | 8118a086bf8735b13307218108e132939449b6f4 (patch) | |
tree | a77ca9a52885aed90df1abb43a5ac2528e330a16 /gnu | |
parent | 063bc5f8996690e4fb4d79ad05afe9ba58b67b74 (diff) | |
download | guix-8118a086bf8735b13307218108e132939449b6f4.tar guix-8118a086bf8735b13307218108e132939449b6f4.tar.gz |
gnu: powertop: Update to 2.10.
* gnu/packages/linux.scm (powertop): Update to 2.10.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 02d17c6794..dd8ff4c783 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1565,16 +1565,14 @@ devices. It replaces @code{iwconfig}, which is deprecated.") (define-public powertop (package (name "powertop") - (version "2.9") + (version "2.10") (source (origin (method url-fetch) - (uri (string-append - "https://01.org/sites/default/files/downloads/powertop/powertop-v" - version ".tar.gz")) + (uri (string-append "https://01.org/sites/default/files/downloads/" + "powertop-v" version ".tar.gz")) (sha256 - (base32 - "0l4jjlf05li2mc6g8nrss3h435wjhmnqd8m7v3kha3x0x7cbfzxa")))) + (base32 "0xaazqccyd42v2q532dxx40nqhb9sfsa6cyx8641rl57mfg4bdyk")))) (build-system gnu-build-system) (arguments '(#:phases |