1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/plasma-5/ksysguard.nix

17 lines
414 B
Nix
Raw Normal View History

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