summary refs log blame commit diff
path: root/pkgs/applications/kde/kdf.nix
blob: 5c196d6a3b129c964179711133b165fb5b831ea6 (plain) (tree)
1
2
3
4
5
6
7
8
 
                    
                                 
                                                             

  
              
                



                                                
                                                        
                                                                          
 
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kcmutils, ki18n, kiconthemes, kio, knotifications, kxmlgui,
}:

mkDerivation {
  pname = "kdf";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.peterhoeg ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kcmutils ki18n kiconthemes kio knotifications kxmlgui ];
}