jetbrains.jdk: 21.0.8b1140.54 -> 21.0.8b1148.57 (#449963)

This commit is contained in:
Sandro
2025-10-16 20:52:09 +00:00
committed by GitHub
@@ -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 = [ ];