1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/desktops/plasma-5/ksysguard.nix

18 lines
472 B
Nix
Raw Normal View History

2016-11-05 17:13:33 +00:00
{
2020-12-05 20:53:16 +00:00
mkDerivation, lib,
extra-cmake-modules, kdoctools,
libcap, libpcap, lm_sensors,
kconfig, kcoreaddons, ki18n, kiconthemes, kinit, kitemviews,
knewstuff, libksysguard, qtbase,
networkmanager-qt, libnl
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 = [
kconfig kcoreaddons kitemviews kinit kiconthemes knewstuff libksysguard
ki18n libcap libpcap lm_sensors networkmanager-qt libnl
2016-04-21 17:01:22 +01:00
];
}