2016-07-30 03:13:00 +01:00
|
|
|
{
|
2017-05-16 16:56:41 +01:00
|
|
|
mkDerivation, lib,
|
2017-05-17 20:26:11 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
|
|
|
ki18n, xcb-util-cursor,
|
|
|
|
kconfig, kcoreaddons, kdbusaddons, kdeclarative, kio, kipi-plugins,
|
2016-10-18 12:45:40 +01:00
|
|
|
knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
|
2019-05-28 20:46:47 +01:00
|
|
|
qtx11extras, knewstuff, qttools
|
2016-04-21 17:00:51 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-16 16:56:41 +01:00
|
|
|
mkDerivation {
|
|
|
|
name = "spectacle";
|
|
|
|
meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-06-21 14:52:16 +01:00
|
|
|
buildInputs = [
|
|
|
|
kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
|
|
|
|
kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi qtx11extras xcb-util-cursor
|
2018-04-20 15:24:00 +01:00
|
|
|
knewstuff
|
2017-05-16 16:56:41 +01:00
|
|
|
];
|
2019-05-28 20:46:47 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace desktop/org.kde.spectacle.desktop \
|
|
|
|
--replace "Exec=qdbus" "Exec=${lib.getBin qttools}/bin/qdbus"
|
|
|
|
'';
|
2017-08-04 09:52:01 +01:00
|
|
|
propagatedUserEnvPkgs = [ kipi-plugins libkipi ];
|
2016-10-18 12:45:40 +01:00
|
|
|
}
|