Files
K900andSandro Jäckel 667faeef7e kdePackages: Plasma 6.3 -> 6.4
- aurorae moved to its own library, move our patch there
- kwin-x11 is a copy of kwin(-wayland), but some bits removed
- ksystemstats and libksysguard need capabilities via helpers
2025-06-17 14:18:20 +02:00

27 lines
436 B
Nix

{
mkKdeDerivation,
pkg-config,
libksysguard,
networkmanager-qt,
lm_sensors,
libnl,
}:
mkKdeDerivation {
pname = "ksystemstats";
patches = [
./helper-path.patch
];
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
networkmanager-qt
lm_sensors
libnl
];
extraCmakeFlags = [
"-DSYSTEMSTATS_DBUS_INTERFACE=${libksysguard}/share/dbus-1/interfaces/org.kde.ksystemstats1.xml"
];
}