2016-08-04 16:07:17 +02:00
|
|
|
{
|
2020-12-05 20:34:39 +01:00
|
|
|
mkDerivation, lib,
|
2017-02-26 13:49:15 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
2020-12-05 20:34:39 +01:00
|
|
|
qtbase,
|
2016-08-04 16:07:17 +02:00
|
|
|
kcmutils, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons,
|
2020-09-01 12:19:14 +02:00
|
|
|
kdeclarative, kdelibs4support, ki18n, kiconthemes, kio, kirigami2, kpackage,
|
|
|
|
kservice, kwayland, kwidgetsaddons, kxmlgui, libraw1394, libGLU, pciutils,
|
2021-01-03 23:24:59 +01:00
|
|
|
solid, systemsettings
|
2016-04-21 18:01:22 +02:00
|
|
|
}:
|
|
|
|
|
2017-05-15 18:44:58 +02:00
|
|
|
mkDerivation {
|
2016-04-21 18:01:22 +02:00
|
|
|
name = "kinfocenter";
|
2020-12-05 20:34:39 +01:00
|
|
|
meta.broken = lib.versionOlder qtbase.version "5.15.0";
|
2017-02-26 13:49:15 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-05-22 20:49:07 +02:00
|
|
|
buildInputs = [
|
2016-08-04 16:07:17 +02:00
|
|
|
kcmutils kcompletion kconfig kconfigwidgets kcoreaddons kdbusaddons
|
2020-09-01 12:19:14 +02:00
|
|
|
kdeclarative kdelibs4support ki18n kiconthemes kio kirigami2 kpackage
|
2021-01-03 23:24:59 +01:00
|
|
|
kservice kwayland kwidgetsaddons kxmlgui libraw1394 libGLU pciutils solid systemsettings
|
2016-04-21 18:01:22 +02:00
|
|
|
];
|
2021-01-03 23:24:59 +01:00
|
|
|
preFixup = ''
|
|
|
|
# fix wrong symlink of infocenter pointing to a 'systemsettings5' binary in the same directory,
|
|
|
|
# while it is actually located in a completely different store path
|
|
|
|
ln -sf ${lib.getBin systemsettings}/bin/systemsettings5 $out/bin/kinfocenter
|
|
|
|
'';
|
2016-04-21 18:01:22 +02:00
|
|
|
}
|