about summary refs log tree commit diff
path: root/pkgs/development/compilers/corretto/19.nix
blob: ea1fcc1aee1bd61e5e0d45572cf69a16fd9f3625 (plain) (blame)
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
26
{ corretto19
, fetchFromGitHub
, gradle_7
, jdk19
, lib
, stdenv
, rsync
, runCommand
, testers
}:

let
  corretto = import ./mk-corretto.nix {
    inherit lib stdenv rsync runCommand testers;
    jdk = jdk19;
    gradle = gradle_7;
    version = "19.0.2.7.1";
    src = fetchFromGitHub {
      owner = "corretto";
      repo = "corretto-19";
      rev = "72f064a1d716272bd17d4e425d4a264b2c2c7d36";
      sha256 = "sha256-mEj/MIbdXU0+fF5RhqjPuSeyclstesGaXB0e48YlKuw=";
    };
  };
in
corretto