davmail: Revert "fix: temp zulu davmail" (#501349)

This commit is contained in:
Doron Behar
2026-04-01 11:11:59 +00:00
committed by GitHub
+8 -2
View File
@@ -12,11 +12,13 @@
libxtst,
coreutils,
gnugrep,
zulu,
preferGtk3 ? true,
preferZulu ? false,
}:
let
jre' = jdk.override { enableJavaFX = true; };
jre' = (if preferZulu then zulu else jdk).override { enableJavaFX = true; };
gtk' = if preferGtk3 then gtk3 else gtk2;
in
stdenv.mkDerivation (finalAttrs: {
@@ -80,7 +82,11 @@ stdenv.mkDerivation (finalAttrs: {
description = "Java application which presents a Microsoft Exchange server as local CALDAV, IMAP and SMTP servers";
homepage = "https://davmail.sourceforge.net/";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ peterhoeg ];
maintainers = with lib.maintainers; [
peterhoeg
doronbehar
shymega
];
platforms = lib.platforms.all;
mainProgram = "davmail";
};