about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/spectacle.nix
blob: 7e324f2b3fc5846e7d108e4e36632018b7104154 (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
  ];
  postFixup = ''
    wrapQtProgram "$out/bin/spectacle"
  '';
}