jetbrains.jdk: 21.0.7 -> 21.0.8

This commit is contained in:
Olli Helenius
2025-10-07 23:26:25 +03:00
parent 4f46ccb8b7
commit efd0262214
@@ -45,27 +45,27 @@ let
in
jdk.overrideAttrs (oldAttrs: rec {
pname = "jetbrains-jdk" + lib.optionalString withJcef "-jcef";
javaVersion = "21.0.7";
build = "1038.58";
javaVersion = "21.0.8";
build = "1140.54";
# 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.7b1038.58";
openjdkTag = "jbr-release-21.0.8b1140.54";
version = "${javaVersion}-b${build}";
src = fetchFromGitHub {
owner = "JetBrains";
repo = "JetBrainsRuntime";
rev = "jb${version}";
hash = "sha256-sGAMrE9gAt73jgLlNW8p5Lz37gFiK4ZvMQ8giE2Ia54=";
hash = "sha256-Iz5Sh9qRktFYsT7m90IG6LC5+tARtVnvqaiEEGLCAXc=";
};
env = {
BOOT_JDK = jdk.home;
# run `git log -1 --pretty=%ct` in jdk repo for new value on update
SOURCE_DATE_EPOCH = 1745907200;
SOURCE_DATE_EPOCH = 1758959208;
};
patches = [ ];