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