nixpkgs/pkgs/desktops/kde-5/applications-16.04/spectacle.nix
2016-04-25 19:04:24 -05:00

36 lines
650 B
Nix

{ 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";
nativeBuildInputs = [
extra-cmake-modules kdoctools makeQtWrapper
];
buildInputs = [
kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
];
postFixup = ''
wrapQtProgram "$out/bin/spectacle"
'';
meta = with lib; {
maintainers = with maintainers; [ ttuegel ];
};
}