summary refs log blame commit diff
path: root/pkgs/applications/kde/spectacle.nix
blob: 2d46b3cdaab375f4c3647ffa5907b48bac5bc291 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                    


                                                                     
                                                                           
                                           

  


                                                                    
                                                        


                                                                                    
                      
    



                                                                   
                                                   
 
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  ki18n, xcb-util-cursor,
  kconfig, kcoreaddons, kdbusaddons, kdeclarative, kio, kipi-plugins,
  knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
  qtx11extras, knewstuff, kwayland, qttools
}:

mkDerivation {
  name = "spectacle";
  meta = with lib; { maintainers = with maintainers; [ ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
    kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi qtx11extras xcb-util-cursor
    knewstuff kwayland
  ];
  postPatch = ''
    substituteInPlace desktop/org.kde.spectacle.desktop \
      --replace "Exec=qdbus" "Exec=${lib.getBin qttools}/bin/qdbus"
  '';
  propagatedUserEnvPkgs = [ kipi-plugins libkipi ];
}