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


                                 
                                                                 



                                           
                             





                                                        
                                                                                  


                            



                                                                                       
 
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  akonadi, akonadi-contacts, kcalendarcore, kcalutils, kcontacts,
  kidentitymanagement, kio, kmailtransport,
}:

mkDerivation {
  pname = "akonadi-calendar";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    akonadi akonadi-contacts kcalendarcore kcalutils kcontacts kidentitymanagement
    kio kmailtransport
  ];
  outputs = [ "out" "dev" ];
  postInstall = ''
    # added as an include directory by cmake files and fails to compile if it's missing
    mkdir -p "$dev/include/KF5"
  '';
}