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

  
              
                        
                                                        
                                              


                                                                      
    
                                                             
 
{
  mkDerivation, lib, extra-cmake-modules,
  epoxy, kconfig, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage,
  kwidgetsaddons, kwindowsystem, qtdeclarative
}:

mkDerivation {
  name = "kdeclarative";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    epoxy kglobalaccel kguiaddons ki18n kiconthemes kio kwidgetsaddons
    kwindowsystem
  ];
  propagatedBuildInputs = [ kconfig kpackage qtdeclarative ];
}