nixpkgs/pkgs/applications/kde/spectacle.nix

21 lines
671 B
Nix
Raw Normal View History

{
2017-05-16 11:56:41 -04:00
mkDerivation, lib,
2017-05-17 15:26:11 -04:00
extra-cmake-modules, kdoctools,
ki18n, xcb-util-cursor,
kconfig, kcoreaddons, kdbusaddons, kdeclarative, kio, kipi-plugins,
2016-10-18 07:45:40 -04:00
knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
2018-04-20 10:24:00 -04:00
qtx11extras, knewstuff
}:
2017-05-16 11:56:41 -04:00
mkDerivation {
name = "spectacle";
meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
2017-05-17 15:26:11 -04:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 09:52:16 -04:00
buildInputs = [
kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi qtx11extras xcb-util-cursor
2018-04-20 10:24:00 -04:00
knewstuff
2017-05-16 11:56:41 -04:00
];
2017-08-04 04:52:01 -04:00
propagatedUserEnvPkgs = [ kipi-plugins libkipi ];
2016-10-18 07:45:40 -04:00
}