mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: powertop: Update to 2.15.
* gnu/packages/linux.scm (powertop): Update to 2.15. [arguments]: Don't explicitly return #t from phases. [native-inputs]: Add autoconf-archive.
This commit is contained in:
parent
831651f60b
commit
2bb8bf36a5
1 changed files with 9 additions and 5 deletions
|
@ -3151,7 +3151,7 @@ (define-public iw
|
||||||
(define-public powertop
|
(define-public powertop
|
||||||
(package
|
(package
|
||||||
(name "powertop")
|
(name "powertop")
|
||||||
(version "2.14")
|
(version "2.15")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -3160,7 +3160,7 @@ (define-public powertop
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zkr2y5nb1nr22nq8a3zli87iyfasfq6489p7h1k428pv8k45w4f"))))
|
(base32 "10vbk4vplmzp3p1mhwnhj81g6i5xvam9pdvmiy6cmd0xvnmdyy77"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
|
@ -3181,10 +3181,14 @@ (define-public powertop
|
||||||
;; are missing powertop gracefully handles it.
|
;; are missing powertop gracefully handles it.
|
||||||
(("/usr/bin/hcitool") "hcitool")
|
(("/usr/bin/hcitool") "hcitool")
|
||||||
(("/usr/bin/xset") "xset")
|
(("/usr/bin/xset") "xset")
|
||||||
(("/usr/sbin/hciconfig") "hciconfig"))
|
(("/usr/sbin/hciconfig") "hciconfig"))))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake gettext-minimal libtool pkg-config))
|
(list autoconf
|
||||||
|
autoconf-archive
|
||||||
|
automake
|
||||||
|
gettext-minimal
|
||||||
|
libtool
|
||||||
|
pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list kmod libnl ncurses pciutils zlib))
|
(list kmod libnl ncurses pciutils zlib))
|
||||||
(home-page "https://01.org/powertop/")
|
(home-page "https://01.org/powertop/")
|
||||||
|
|
Loading…
Reference in a new issue