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

                      

                                                                     

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

mkDerivation {
  name = "kglobalaccel";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kcrash kdbusaddons kservice kwindowsystem qtx11extras
  ];
}