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

                                              
        
                      

  
              
                          
                                                        
                                                      
                 
                                                                            
    
 
{ mkDerivation, lib
, extra-cmake-modules
, kcodecs, kconfig, kcoreaddons, kwindowsystem
, libdbusmenu
, phonon
, qttools, qtx11extras
}:

mkDerivation {
  name = "knotifications";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules qttools ];
  buildInputs = [
    kcodecs kconfig kcoreaddons kwindowsystem libdbusmenu phonon qtx11extras
  ];
}