summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/jetbrains-jdk/21.nix
blob: 55a2b5ee4d19b68dbbd1b933f64d2c804a179777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  callPackage,
  jetbrains,
  jdk,
  debugBuild ? false,
  withJcef ? true,
}:

callPackage ./common.nix
  {
    inherit jdk debugBuild withJcef;
  }
  {
    # 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-
    javaVersion = "21.0.10";
    build = "1163.110";
    # run `git log -1 --pretty=%ct` in jdk repo for new value on update
    sourceDateEpoch = 1765114563;
    srcHash = "sha256-Qmffu7p6frBoH2Zh+EiqvEoMNNBE79qfkgLSC3+XuI0=";
    jcefPackage = jetbrains.jcef-21;
  }