kdeApps_15_12.spectacle: init at 15.12.0
This commit is contained in:
parent
cc058eff70
commit
408c3e5033
@ -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; });
|
||||
};
|
||||
|
46
pkgs/applications/kde-apps-15.12/spectacle.nix
Normal file
46
pkgs/applications/kde-apps-15.12/spectacle.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user