Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
436 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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"
];
}