me
/
guix
Archived
1
0
Fork 0

gnu: Add ksysguard.

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

Signed-off-by: Marius Bakke <marius@gnu.org>
Petr Hodina 2022-08-27 17:01:13 +02:00 committed by Marius Bakke
parent fb94d0a17d
commit 448df3cde1
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 37 additions and 0 deletions

View File

@ -253,6 +253,43 @@ call it if it is not associated to a terminal.")
"@code{kscreenlocker} is a library for creating secure lock screens.") "@code{kscreenlocker} is a library for creating secure lock screens.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public ksysguard
(package
(name "ksysguard")
(version "5.22.0")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/ksysguard/" version
"/ksysguard-" version ".tar.xz"))
(sha256
(base32 "0bb2aj46v7ig0wn3ir68igryl2gblz2n75cddn8fwamvbx76570g"))))
(build-system qt-build-system)
;; TODO: No tests found
(native-inputs
(list extra-cmake-modules kdoctools))
(inputs
(list kconfig
kcoreaddons
kdbusaddons
ki18n
kiconthemes
kinit
kio
kitemviews
knewstuff
knotifications
kwindowsystem
libksysguard
`(,lm-sensors "lib")
qtbase-5))
(home-page "https://www.kde.org/applications/system/ksysguard/")
(synopsis "Plasma process and performance monitor")
(description "KSysGuard is a program to monitor various elements of your
system, or any other remote system with the KSysGuard daemon (ksysgardd)
installed.")
(license license:gpl2+)))
(define-public libkscreen (define-public libkscreen
(package (package
(name "libkscreen") (name "libkscreen")