summary refs log blame commit diff
path: root/pkgs/applications/kde/akonadi-contacts.nix
blob: 76c4f3f2c5079b016df76be4159fa4a20374b233 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                                
                      
              
                          

                                                                            

  
              
                             

                                                 
                             
    
                                              
                 
               
                          
                                                                              
                                        

                                      
                            
 
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules,
  qtwebengine,
  grantlee, grantleetheme,
  kcmutils, kdbusaddons, ki18n, kiconthemes, kio, kitemmodels, ktextwidgets,
  prison, akonadi, akonadi-mime, kcontacts, kmime, libkleo,
}:

mkDerivation {
  pname = "akonadi-contacts";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    qtwebengine
    grantlee grantleetheme
    kcmutils kdbusaddons ki18n kiconthemes kio kitemmodels ktextwidgets prison
    akonadi-mime kcontacts kmime libkleo
  ];
  propagatedBuildInputs = [ akonadi ];
  outputs = [ "out" "dev" ];
}