From 6d0b8164dc6ec397769c1bbf68203ea554cb0b1b Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Sat, 27 Aug 2022 17:01:13 +0200 Subject: [PATCH 13/81] gnu: Add ksysguard. * gnu/packages/kde-plasma.scm (ksysguard): New variable. diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index b996cf27cc..5c4bb1f950 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -253,6 +253,43 @@ (define-public kscreenlocker "@code{kscreenlocker} is a library for creating secure lock screens.") (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 (package (name "libkscreen") -- 2.37.2