Unverified Commit f084bc3b authored by Leona Maroni's avatar Leona Maroni Committed by GitHub
Browse files

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

jetbrains.jdk: 21.0.3b465.3 -> 21.0.3b509.11
parents 601f5026 7f18de02
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 = [ ];