Commit 3350d422 authored by Infinidoge's avatar Infinidoge
Browse files

prismlauncher: use jdk17 instead of jdk

Prism Launcher only officially supports jdk 17/18 for running newer
versions of Minecraft, as they found that jdk 19 introduced a number of
edge cases.
This fixes an issue where the newer version of Java that the launcher
proposes is incompatible with the launcher itself, leading to errors
when running instances on newer versions of Minecraft.
parent 1b33417f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
, fetchFromGitHub
, cmake
, jdk8
, jdk
, jdk17
, zlib
, file
, wrapQtAppsHook
@@ -20,7 +20,7 @@
, tomlplusplus
, ghc_filesystem
, msaClientID ? ""
, jdks ? [ jdk jdk8 ]
, jdks ? [ jdk17 jdk8 ]
}:

let
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
    sha256 = "sha256-Kwj1GvlT12jRcf84WMSnD4xkgGL3X9AVqdGDCxMmS4E=";
  };

  nativeBuildInputs = [ extra-cmake-modules cmake file jdk wrapQtAppsHook ];
  nativeBuildInputs = [ extra-cmake-modules cmake file jdk17 wrapQtAppsHook ];
  buildInputs = [
    qtbase
    qtsvg