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

  
              


                                      
    


                           
                                              
                                                             
                            
 
{
  mkDerivation, lib,
  extra-cmake-modules, isocodes,
  kcoreaddons, kconfig, kcodecs, ki18n, qtbase,
}:

mkDerivation {
  name = "kcontacts";
  meta = {
    license = [ lib.licenses.lgpl21 ];
  };
  propagatedBuildInputs = [
    isocodes
  ];
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kcoreaddons kconfig kcodecs ki18n qtbase ];
  outputs = [ "out" "dev" ];
}