summary refs log tree commit diff
path: root/pkgs/applications/kde/spectacle.nix
blob: 4c3a5246b2e73c81406c7dc21c4b1999aef05b96 (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
{
  kdeApp, lib, kdeWrapper,
  ecm, kdoctools,
  kconfig, kcoreaddons, kdbusaddons, kdeclarative, ki18n, kio, kipi-plugins,
  knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
  xcb-util-cursor
}:

let
  unwrapped =
    kdeApp {
      name = "spectacle";
      meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
      nativeBuildInputs = [ ecm kdoctools ];
      propagatedBuildInputs = [
        kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
        kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/spectacle" ];
  paths = [ kipi-plugins ];
}