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.
This commit is contained in:
Infinidoge 2022-12-19 01:24:18 -05:00
parent 1b33417f69
commit 3350d42244

View file

@ -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