Unverified Commit ad50e3d9 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

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

parents 4e2945b0 61dd16da
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -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";
  };