mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
27 lines
493 B
Nix
27 lines
493 B
Nix
|
{ 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
|