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



                                                                       
                                                   

  
              
                   
                                                        
                                              

                                                              
                
    
                                                                    
 
{
  mkDerivation, lib,
  extra-cmake-modules,
  kconfig, kcoreaddons, ki18n, kio, kservice, plasma-framework, qtbase,
  qtdeclarative, solid, threadweaver, kwindowsystem
}:

mkDerivation {
  name = "krunner";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kconfig kcoreaddons ki18n kio kservice qtdeclarative solid
    threadweaver
  ];
  propagatedBuildInputs = [ plasma-framework qtbase kwindowsystem ];
}