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
|
kmenuedit
|
||||||
kscreen
|
kscreen
|
||||||
kscreenlocker
|
kscreenlocker
|
||||||
|
ksystemstats
|
||||||
kwayland
|
kwayland
|
||||||
kwin
|
kwin
|
||||||
kwrited
|
kwrited
|
||||||
|
@ -124,6 +124,7 @@ let
|
|||||||
kscreenlocker = callPackage ./kscreenlocker.nix {};
|
kscreenlocker = callPackage ./kscreenlocker.nix {};
|
||||||
ksshaskpass = callPackage ./ksshaskpass.nix {};
|
ksshaskpass = callPackage ./ksshaskpass.nix {};
|
||||||
ksysguard = throw "ksysguard has been replaced with plasma-systemmonitor";
|
ksysguard = throw "ksysguard has been replaced with plasma-systemmonitor";
|
||||||
|
ksystemstats = callPackage ./ksystemstats.nix {};
|
||||||
kwallet-pam = callPackage ./kwallet-pam.nix {};
|
kwallet-pam = callPackage ./kwallet-pam.nix {};
|
||||||
kwayland-integration = callPackage ./kwayland-integration.nix {};
|
kwayland-integration = callPackage ./kwayland-integration.nix {};
|
||||||
kwayland-server = callPackage ./kwayland-server {};
|
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