about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications/spectacle.nix
blob: 2665d840c387ebb956803228e6179f2058cf4484 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  kdeApp, lib, ecm, kdoctools, makeQtWrapper,
  kconfig, kcoreaddons, kdbusaddons, kdeclarative, ki18n, kio, knotifications,
  kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi, xcb-util-cursor
}:

kdeApp {
  name = "spectacle";
  meta = with lib; {
    maintainers = with maintainers; [ ttuegel ];
  };
  nativeBuildInputs = [ ecm kdoctools makeQtWrapper ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
    kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/spectacle"
  '';
}