mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
18 lines
492 B
Nix
18 lines
492 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
libcap, libpcap, lm_sensors,
|
|
kconfig, kcoreaddons, kdelibs4support, ki18n, kiconthemes, kitemviews,
|
|
knewstuff, libksysguard, qtbase,
|
|
networkmanager-qt, libnl
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "ksysguard";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
|
|
kdelibs4support ki18n libcap libpcap lm_sensors networkmanager-qt libnl
|
|
];
|
|
}
|