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







                                                             
                                                        
                                                            
                           

                                                                        



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

kdeFramework {
  name = "kdeclarative";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
  propagatedBuildInputs = [
    epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
    kwidgetsaddons kwindowsystem qtdeclarative
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/kpackagelauncherqml"
  '';
}