kinfocenter: clean up 80-column violations

This commit is contained in:
Thomas Tuegel 2021-05-07 10:55:02 -05:00
parent f0456b2305
commit 08c61d45c5
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59

View file

@ -3,9 +3,9 @@
extra-cmake-modules, kdoctools,
qtbase,
kcmutils, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons,
kdeclarative, ki18n, kiconthemes, kio, kirigami2, kpackage,
kservice, kwayland, kwidgetsaddons, kxmlgui, libraw1394, libGLU, pciutils,
solid, systemsettings
kdeclarative, ki18n, kiconthemes, kio, kirigami2, kpackage, kservice,
kwayland, kwidgetsaddons, kxmlgui, solid, systemsettings,
libraw1394, libGLU, pciutils,
}:
mkDerivation {
@ -13,12 +13,15 @@ mkDerivation {
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kcmutils kcompletion kconfig kconfigwidgets kcoreaddons kdbusaddons
kdeclarative ki18n kiconthemes kio kirigami2 kpackage
kservice kwayland kwidgetsaddons kxmlgui libraw1394 libGLU pciutils solid systemsettings
kdeclarative ki18n kiconthemes kio kirigami2 kpackage kservice kwayland
kwidgetsaddons kxmlgui solid systemsettings
libraw1394 libGLU pciutils
];
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
# 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
'';
}