From f062ad0d6646ab32c3fcd8857956caf17a683d58 Mon Sep 17 00:00:00 2001 From: Olli Helenius Date: Wed, 8 Oct 2025 18:07:12 +0300 Subject: [PATCH] jetbrains.jdk: 21.0.8b1140.54 -> 21.0.8b1148.57 Downgrading due to the latest version not working properly with the IDEs. --- pkgs/development/compilers/jetbrains-jdk/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/jetbrains-jdk/default.nix b/pkgs/development/compilers/jetbrains-jdk/default.nix index 8c38c5ce701b..67e11e7082cf 100644 --- a/pkgs/development/compilers/jetbrains-jdk/default.nix +++ b/pkgs/development/compilers/jetbrains-jdk/default.nix @@ -46,26 +46,26 @@ in jdk.overrideAttrs (oldAttrs: rec { pname = "jetbrains-jdk" + lib.optionalString withJcef "-jcef"; javaVersion = "21.0.8"; - build = "1140.54"; + build = "1148.57"; # To get the new tag: # git clone https://github.com/jetbrains/jetbrainsruntime # cd jetbrainsruntime # git tag --points-at [revision] # Look for the line that starts with jbr- - openjdkTag = "jbr-release-21.0.8b1140.54"; + openjdkTag = "jbr-release-21.0.8b1148.57"; version = "${javaVersion}-b${build}"; src = fetchFromGitHub { owner = "JetBrains"; repo = "JetBrainsRuntime"; rev = "jb${version}"; - hash = "sha256-Iz5Sh9qRktFYsT7m90IG6LC5+tARtVnvqaiEEGLCAXc="; + hash = "sha256-RgXwWNHAeFxmrFmyB+DP5dOif06iql2UvimEaARnQvg="; }; env = { BOOT_JDK = jdk.home; # run `git log -1 --pretty=%ct` in jdk repo for new value on update - SOURCE_DATE_EPOCH = 1758959208; + SOURCE_DATE_EPOCH = 1759539679; }; patches = [ ];