gnu: powerdevil: Update to 6.1.2.
* gnu/packages/kde-plasma.scm (powerdevil): Update to 6.1.2. [inputs]: Remove kactivities and qtx11extras; add plasma-activities, kxmlgui, kitemmodels, layer-shell-qt, and libxkbcommon. [native-inputs]: Remove qttools-5; add qttools. [arguments]: Set #:qtbase to qtbase; Add setenv phase. Change-Id: Ic5cdd9ccf3fc3ec24864156cc3d63cea380d169d
This commit is contained in:
parent
47e39b1669
commit
3a422dd417
1 changed files with 13 additions and 5 deletions
|
@ -2826,25 +2826,28 @@ UI for Plasma")
|
||||||
(define-public powerdevil
|
(define-public powerdevil
|
||||||
(package
|
(package
|
||||||
(name "powerdevil")
|
(name "powerdevil")
|
||||||
(version "5.27.7")
|
(version "6.1.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://kde/stable/plasma/" version
|
(uri (string-append "mirror://kde/stable/plasma/" version
|
||||||
"/" name "-" version ".tar.xz"))
|
"/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"151qhpf5j33jk3jhhxsr4zaf0z3f8xlnw8inmzf2a8lficiq9060"))))
|
"052hv22ps90sm44wrdf5f4x2iz633nypl75xjwv257pn6ravia6l"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(native-inputs (list extra-cmake-modules qttools-5 pkg-config))
|
(native-inputs (list extra-cmake-modules qttools pkg-config))
|
||||||
(inputs (list bluez-qt
|
(inputs (list bluez-qt
|
||||||
glib
|
glib
|
||||||
kauth
|
kauth
|
||||||
kactivities
|
plasma-activities
|
||||||
kcmutils
|
kcmutils
|
||||||
kscreen
|
kscreen
|
||||||
kidletime
|
kidletime
|
||||||
kconfig
|
kconfig
|
||||||
kdbusaddons
|
kdbusaddons
|
||||||
|
kxmlgui
|
||||||
|
kitemmodels
|
||||||
|
layer-shell-qt
|
||||||
solid
|
solid
|
||||||
ki18n
|
ki18n
|
||||||
kcrash
|
kcrash
|
||||||
|
@ -2861,7 +2864,12 @@ UI for Plasma")
|
||||||
network-manager
|
network-manager
|
||||||
plasma-workspace
|
plasma-workspace
|
||||||
eudev
|
eudev
|
||||||
qtx11extras))
|
libxkbcommon))
|
||||||
|
(arguments (list #:qtbase qtbase
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'setenv
|
||||||
|
(lambda _
|
||||||
|
(setenv "HOME" (getcwd)))))))
|
||||||
(synopsis "Manage power consumption")
|
(synopsis "Manage power consumption")
|
||||||
(description "This package provides the power consumption settings
|
(description "This package provides the power consumption settings
|
||||||
of a Plasma shell.")
|
of a Plasma shell.")
|
||||||
|
|
Reference in a new issue