nixpkgs/pkgs/desktops/plasma-5/libksysguard/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
791 B
Nix
Raw Normal View History

{ mkDerivation
, lib
, extra-cmake-modules
, kauth
, kcompletion
, kconfig
, kconfigwidgets
, kcoreaddons
, ki18n
, kiconthemes
, knewstuff
, kservice
, kwidgetsaddons
, kwindowsystem
, plasma-framework
, qtbase
, qtscript
, qtwebengine
, qtx11extras
, libnl
, libpcap
, qtsensors
, lm_sensors
2016-04-21 18:01:22 +02:00
}:
mkDerivation {
2022-03-06 22:28:56 +01:00
pname = "libksysguard";
2016-04-21 18:01:22 +02:00
patches = [
./0001-qdiriterator-follow-symlinks.patch
];
nativeBuildInputs = [ extra-cmake-modules ];
2017-05-26 22:44:36 +02:00
buildInputs = [
kauth
kconfig
ki18n
kiconthemes
kwindowsystem
kcompletion
kconfigwidgets
kcoreaddons
kservice
kwidgetsaddons
plasma-framework
qtscript
qtx11extras
qtwebengine
knewstuff
libnl
libpcap
qtsensors
lm_sensors
2016-04-21 18:01:22 +02:00
];
outputs = [ "bin" "dev" "out" ];
2016-04-21 18:01:22 +02:00
}