aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-12-19 15:44:05 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2022-12-19 15:44:05 +0100
commit483a5b6cae314cf42c3977406f3927d88c0540ad (patch)
tree276d76174817dd338ceccbef72378fe56cd5e61e /nix
parentdf1b7f165662823795626ec82d0f3d53c668a88f (diff)
downloadPrismLauncher-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.nix6
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