jetbrains.jdk: 21.0.8b1140.54 -> 21.0.8b1148.57

Downgrading due to the latest version not working properly with the
IDEs.
This commit is contained in:
Olli Helenius
2025-10-08 19:14:58 +03:00
parent 1ea636c437
commit f062ad0d66
@@ -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 = [ ];