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

mkDerivation {
  name = "spectacle";
  meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ ki18n xcb-util-cursor ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kdbusaddons kdeclarative kio knotifications
    kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi
  ];
  propagatedUserEnvPkgs = [ kipi-plugins ];
}