me
/
guix
Archived
1
0
Fork 0

gnu: Add system-settings.

* gnu/packages/kde-plasma.scm (system-settings): New variable.

Signed-off-by: Marius Bakke <marius@gnu.org>
Petr Hodina 2022-08-26 09:04:19 +02:00 committed by Marius Bakke
parent 72b80b9b17
commit b6e75ce733
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 41 additions and 0 deletions

View File

@ -1634,3 +1634,44 @@ hardware management, and a high degree of customizability.")
UI for Plasma")
(home-page "https://invent.kde.org/plasma/polkit-kde-agent-1")
(license license:gpl2+)))
(define-public system-settings
(package
(name "system-settings")
(version "5.25.5")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/plasma/" version
"/systemsettings-" version ".tar.xz"))
(sha256
(base32
"0n7mf6ygi8fgn1m6pk2fadnqj1h58mxqni3h19xbi373wfypq5fl"))))
(build-system qt-build-system)
(native-inputs (list extra-cmake-modules))
(inputs (list kauth
kcrash
kitemviews
kitemmodels
kcmutils
ki18n
kio
kservice
kiconthemes
kwidgetsaddons
kwindowsystem
kxmlgui
kdbusaddons
kconfig
kpackage
kactivities
kactivities-stats
kguiaddons
kirigami
knotifications
krunner
plasma-workspace
qtdeclarative-5))
(synopsis "Control center to configure Plasma Desktop")
(description "This package provides configuration UI for Plasma Desktop.")
(home-page "https://invent.kde.org/plasma/systemsettings")
(license license:gpl2+)))