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