21 lines
257 B
Nix
21 lines
257 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
qttools,
|
|
libpcap,
|
|
libnl,
|
|
lm_sensors,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libksysguard";
|
|
|
|
extraBuildInputs = [
|
|
qtwebchannel
|
|
qtwebengine
|
|
qttools
|
|
libpcap
|
|
libnl
|
|
lm_sensors
|
|
];
|
|
}
|