Merge pull request #333421 from hacker1024/update/jetbrains-jbr

jetbrains.jdk: 21.0.3b465.3 -> 21.0.3b509.11
This commit is contained in:
Leona Maroni 2024-08-23 14:25:59 +02:00 committed by GitHub
commit f084bc3bec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,25 +39,25 @@ in
jdk.overrideAttrs (oldAttrs: rec {
pname = "jetbrains-jdk" + lib.optionalString withJcef "-jcef";
javaVersion = "21.0.3";
build = "465.3";
build = "509.11";
# To get the new tag:
# git clone https://github.com/jetbrains/jetbrainsruntime
# cd jetbrainsruntime
# git checkout jbr-release-${javaVersion}b${build}
# git log --simplify-by-decoration --decorate=short --pretty=short | grep "jbr-" --color=never | cut -d "(" -f2 | cut -d ")" -f1 | awk '{print $2}' | sort -t "-" -k 2 -g | tail -n 1 | tr -d ","
openjdkTag = "jbr-21.0.2+3";
openjdkTag = "jbr-21.0.2+13";
version = "${javaVersion}-b${build}";
src = fetchFromGitHub {
owner = "JetBrains";
repo = "JetBrainsRuntime";
rev = "jb${version}";
hash = "sha256-Pup/XeHExCE6yy2o74wF7VlYU6MI9cg8gb69V3bclIo=";
hash = "sha256-zTstmrH4KteR40BVDRfxOrl8aUQ26acE+ywscBd8sw8=";
};
BOOT_JDK = jdk.home;
# run `git log -1 --pretty=%ct` in jdk repo for new value on update
SOURCE_DATE_EPOCH = 1717225235;
SOURCE_DATE_EPOCH = 1723453663;
patches = [ ];