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


                                 
                                                                  



                                    
                      





                                                        
                                                               



                                    
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  grantlee, kcalendarcore, kconfig, kontactinterface, kcoreaddons,
  kidentitymanagement, kpimtextedit,
}:

mkDerivation {
  pname = "kcalutils";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    grantlee kcalendarcore kconfig kontactinterface kcoreaddons
    kidentitymanagement kpimtextedit
  ];
  outputs = [ "out" "dev" ];
}