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



                                                                         

  
              
                       
                                                        
                                              

                                                             
    
                                     
 
{
  mkDerivation, lib,
  extra-cmake-modules,
  boost, kconfig, kcoreaddons, kio, kwindowsystem, qtbase, qtdeclarative,
}:

mkDerivation {
  name = "kactivities";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    boost kconfig kcoreaddons kio kwindowsystem qtdeclarative
  ];
  propagatedBuildInputs = [ qtbase ];
}