summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kglobalaccel.nix
blob: ca015151e0f1c0541bc673d3485d4803f04201b6 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
               
                      
                                                                     
                               

  
              
                        
                                              


                                                                         
    
                                     
 
{
  mkDerivation,
  extra-cmake-modules,
  kconfig, kcoreaddons, kcrash, kdbusaddons, kservice, kwindowsystem,
  qtbase, qttools, qtx11extras,
}:

mkDerivation {
  name = "kglobalaccel";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kconfig kcoreaddons kcrash kdbusaddons kservice kwindowsystem qttools
    qtx11extras
  ];
  propagatedBuildInputs = [ qtbase ];
}