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

  
              


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

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