git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
38 lines
743 B
Nix
38 lines
743 B
Nix
{
|
|
fetchFromGitHub,
|
|
gradle_7,
|
|
jdk11,
|
|
lib,
|
|
stdenv,
|
|
rsync,
|
|
runCommand,
|
|
testers,
|
|
}:
|
|
|
|
let
|
|
corretto = import ./mk-corretto.nix rec {
|
|
inherit
|
|
lib
|
|
stdenv
|
|
rsync
|
|
runCommand
|
|
testers
|
|
;
|
|
jdk = jdk11;
|
|
gradle = gradle_7;
|
|
extraConfig = [
|
|
# jdk11 is built with --disable-warnings-as-errors (see openjdk/11.nix)
|
|
# because of several compile errors. We need to include this parameter for
|
|
# Corretto, too.
|
|
"--disable-warnings-as-errors"
|
|
];
|
|
version = "11.0.24.8.1";
|
|
src = fetchFromGitHub {
|
|
owner = "corretto";
|
|
repo = "corretto-11";
|
|
rev = version;
|
|
sha256 = "sha256-MD/ipEulQCEgfqqa0QQrD6x6GQwirQfb8OT2UBDLYEE=";
|
|
};
|
|
};
|
|
in
|
|
corretto
|