kdeApps_15_12.spectacle: init at 15.12.0

This commit is contained in:
Thomas Tuegel 2015-12-16 09:46:51 -06:00
parent cc058eff70
commit 408c3e5033
2 changed files with 47 additions and 0 deletions

View file

@ -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; });
};

View file

@ -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 ];
};
}