ksystemstats: init at 5.22.0

Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
This commit is contained in:
Yaroslav Bolyukin 2021-06-24 09:14:41 +03:00 committed by Raphael Megzari
parent f3ea3444fc
commit b0f1caf522
3 changed files with 13 additions and 0 deletions

View file

@ -271,6 +271,7 @@ in
kmenuedit
kscreen
kscreenlocker
ksystemstats
kwayland
kwin
kwrited

View file

@ -124,6 +124,7 @@ let
kscreenlocker = callPackage ./kscreenlocker.nix {};
ksshaskpass = callPackage ./ksshaskpass.nix {};
ksysguard = throw "ksysguard has been replaced with plasma-systemmonitor";
ksystemstats = callPackage ./ksystemstats.nix {};
kwallet-pam = callPackage ./kwallet-pam.nix {};
kwayland-integration = callPackage ./kwayland-integration.nix {};
kwayland-server = callPackage ./kwayland-server {};

View file

@ -0,0 +1,11 @@
{ mkDerivation, lib
, extra-cmake-modules
, libksysguard, libnl, lm_sensors, networkmanager-qt
}:
mkDerivation {
name = "ksystemstats";
NIX_CFLAGS_COMPILE = [ "-I${libksysguard.bin}/share" ];
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ libksysguard libnl lm_sensors networkmanager-qt ];
}