mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 00:34:00 +00:00
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
|
|
];
|
|
}
|