diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-08-26 08:27:35 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:11 +0100 |
commit | 75e34ecc24170d087ea011d2038f7395117aa5b8 (patch) | |
tree | d159da392708ee4864640d3b0fac0be8c9f724f1 /gnu/packages/kde-plasma.scm | |
parent | c106297111b67ad99ee71c2d10d791697355310f (diff) | |
download | guix-75e34ecc24170d087ea011d2038f7395117aa5b8.tar.gz |
gnu: Add plasma-systemmonitor.
* gnu/packages/kde-plasma.scm (plasma-systemmonitor): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages/kde-plasma.scm')
-rw-r--r-- | gnu/packages/kde-plasma.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 853a3cce07..20ebd9f3a9 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -1194,3 +1194,38 @@ PulseAudio.") (description "Provides Plasma applet and services for creating encrypted vaults.") (license (list license:gpl2 license:gpl3)))) + +(define-public plasma-systemmonitor + (package + (name "plasma-systemmonitor") + (version "5.25.5") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" version "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0rs3avhpmfapzha8dkir9ny60ba2m92bbfv4avsd85vz5kggg29h")))) + (build-system qt-build-system) + (native-inputs (list extra-cmake-modules)) + (inputs (list ki18n + kconfig + kdeclarative + kservice + kiconthemes + kglobalaccel + kio + kdbusaddons + kirigami + knewstuff + ksystemstats + kitemmodels + libksysguard + qtdeclarative-5 + qtquickcontrols2-5)) + (synopsis "System sensors, process information and other system resources +monitor") + (description "This package provides an interface for monitoring system +sensors, process information and other system resources.") + (home-page "https://invent.kde.org/plasma/plasma-systemmonitor") + (license (list license:gpl2 license:gpl3)))) |