summary refs log blame commit diff
path: root/pkgs/applications/kde/kcalutils.nix
blob: 2e389ec4ac7de8c7b6e4a185f772f7da5ba2126c (plain) (tree)
1
2
3
4


                                 
                                                                                   










                                                        
                                                                               



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

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