about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications/spectacle.nix
blob: 867c0b53b1e79ea800360cd92fd49af8e454316a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ kdeApp, lib
, extra-cmake-modules
, 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 = [
    extra-cmake-modules kdoctools makeQtWrapper
  ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
    kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/spectacle"
  '';
}