nixpkgs/pkgs/applications/kde/spectacle.nix

26 lines
732 B
Nix
Raw Normal View History

{
2016-07-30 22:40:00 +00:00
kdeApp, lib, kdeWrapper,
extra-cmake-modules, kdoctools,
2016-10-18 11:45:40 +00:00
kconfig, kcoreaddons, kdbusaddons, kdeclarative, ki18n, kio, kipi-plugins,
knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
xcb-util-cursor
}:
2016-07-30 22:40:00 +00:00
let
unwrapped =
kdeApp {
name = "spectacle";
meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-07-30 22:40:00 +00:00
propagatedBuildInputs = [
kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
];
};
in
kdeWrapper {
inherit unwrapped;
2016-10-18 11:45:40 +00:00
targets = [ "bin/spectacle" ];
paths = [ kipi-plugins ];
}