ksystemstats: init at 5.22.0
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
This commit is contained in:
parent
f3ea3444fc
commit
b0f1caf522
@ -271,6 +271,7 @@ in
|
||||
kmenuedit
|
||||
kscreen
|
||||
kscreenlocker
|
||||
ksystemstats
|
||||
kwayland
|
||||
kwin
|
||||
kwrited
|
||||
|
@ -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 {};
|
||||
|
11
pkgs/desktops/plasma-5/ksystemstats.nix
Normal file
11
pkgs/desktops/plasma-5/ksystemstats.nix
Normal 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 ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user