diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-12-19 15:44:05 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-12-19 15:44:05 +0100 |
commit | 483a5b6cae314cf42c3977406f3927d88c0540ad (patch) | |
tree | 276d76174817dd338ceccbef72378fe56cd5e61e /nix | |
parent | df1b7f165662823795626ec82d0f3d53c668a88f (diff) | |
download | PrismLauncher-483a5b6cae314cf42c3977406f3927d88c0540ad.tar.gz PrismLauncher-483a5b6cae314cf42c3977406f3927d88c0540ad.tar.bz2 PrismLauncher-483a5b6cae314cf42c3977406f3927d88c0540ad.zip |
fix(nix): use jdk17 instead of jdk
See NixOS/nixpkgs#206806
Co-authored-by: Infinidoge <infinidoge@doge-inc.net>
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/default.nix b/nix/default.nix index 6050fd37..b188504d 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -2,7 +2,7 @@ , stdenv , cmake , jdk8 -, jdk +, jdk17 , zlib , file , wrapQtAppsHook @@ -18,7 +18,7 @@ , extra-cmake-modules , ghc_filesystem , msaClientID ? "" -, jdks ? [ jdk jdk8 ] +, jdks ? [ jdk17 jdk8 ] # flake , self @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { src = lib.cleanSource self; - nativeBuildInputs = [ extra-cmake-modules cmake file jdk wrapQtAppsHook ]; + nativeBuildInputs = [ extra-cmake-modules cmake file jdk17 wrapQtAppsHook ]; buildInputs = [ qtbase qtsvg |