From 408c3e5033a15a5772548147975d824e1b96fbef Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 09:46:51 -0600 Subject: [PATCH] kdeApps_15_12.spectacle: init at 15.12.0 --- pkgs/applications/kde-apps-15.12/default.nix | 1 + .../applications/kde-apps-15.12/spectacle.nix | 46 +++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 pkgs/applications/kde-apps-15.12/spectacle.nix diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index d5c0aa44668..e96c0c2af33 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -46,6 +46,7 @@ let libkipi = callPackage ./libkipi.nix {}; okular = callPackage ./okular.nix {}; print-manager = callPackage ./print-manager.nix {}; + spectacle = callPackage ./spectacle.nix {}; l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); }; diff --git a/pkgs/applications/kde-apps-15.12/spectacle.nix b/pkgs/applications/kde-apps-15.12/spectacle.nix new file mode 100644 index 00000000000..849334fb736 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/spectacle.nix @@ -0,0 +1,46 @@ +{ kdeApp, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kconfig +, kcoreaddons +, kdbusaddons +, ki18n +, kio +, knotifications +, kscreen +, kwidgetsaddons +, kwindowsystem +, kxmlgui +, libkipi +, xcb-util-cursor +}: + +kdeApp { + name = "spectacle"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kconfig + kcoreaddons + kdbusaddons + ki18n + kio + knotifications + kscreen + kwidgetsaddons + kwindowsystem + kxmlgui + libkipi + xcb-util-cursor + ]; + postFixup = '' + wrapQtProgram "$out/bin/spectacle" + ''; + meta = with lib; { + maintainers = with maintainers; [ ttuegel ]; + }; +}