2018-10-20 08:18:56 +01:00
|
|
|
let
|
2018-12-17 22:08:56 +00:00
|
|
|
sources = builtins.fromJSON (builtins.readFile ./sources.json);
|
2018-10-20 08:18:56 +01:00
|
|
|
in
|
|
|
|
{
|
2021-03-19 15:36:28 +00:00
|
|
|
jdk-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk11.mac.jdk.hotspot; };
|
|
|
|
jre-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk11.mac.jre.hotspot; };
|
|
|
|
jdk-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk11.mac.jdk.openj9; };
|
|
|
|
jre-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk11.mac.jre.openj9; };
|
2018-10-20 08:18:56 +01:00
|
|
|
}
|