1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/spectacle.nix

21 lines
677 B
Nix
Raw Normal View History

{
2017-05-16 16:56:41 +01:00
mkDerivation, lib,
2017-05-17 20:26:11 +01:00
extra-cmake-modules, kdoctools,
ki18n, xcb-util-cursor,
kconfig, kcoreaddons, kdbusaddons, kdeclarative, kio, kipi-plugins,
2016-10-18 12:45:40 +01:00
knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
qtx11extras
}:
2017-05-16 16:56:41 +01:00
mkDerivation {
name = "spectacle";
meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ ki18n xcb-util-cursor ];
2017-05-16 16:56:41 +01:00
propagatedBuildInputs = [
2017-05-17 20:26:11 +01:00
kconfig kcoreaddons kdbusaddons kdeclarative kio knotifications
kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi qtx11extras
2017-05-16 16:56:41 +01:00
];
2017-08-04 09:52:01 +01:00
propagatedUserEnvPkgs = [ kipi-plugins libkipi ];
2016-10-18 12:45:40 +01:00
}