1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/plasma-5/ksysguard.nix

17 lines
414 B
Nix
Raw Normal View History

2016-11-05 13:13:33 -04:00
{
mkDerivation,
extra-cmake-modules, kdoctools,
2016-11-05 13:13:33 -04:00
lm_sensors,
kconfig, kcoreaddons, kdelibs4support, ki18n, kiconthemes, kitemviews,
2016-11-05 16:07:42 -04:00
knewstuff, libksysguard, qtwebkit
2016-04-21 12:01:22 -04:00
}:
mkDerivation {
2016-04-21 12:01:22 -04:00
name = "ksysguard";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-26 16:44:36 -04:00
buildInputs = [
2016-04-21 12:01:22 -04:00
kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
2017-05-26 16:44:36 -04:00
kdelibs4support ki18n lm_sensors qtwebkit
2016-04-21 12:01:22 -04:00
];
}