2018-10-13 16:42:21 +02:00
|
|
|
let
|
2018-12-17 23:08:56 +01:00
|
|
|
sources = builtins.fromJSON (builtins.readFile ./sources.json);
|
2018-10-13 16:42:21 +02:00
|
|
|
in
|
|
|
|
{
|
2018-12-17 23:08:56 +01:00
|
|
|
jdk-hotspot = import ./jdk-linux-base.nix sources.openjdk11.linux.jdk.hotspot;
|
|
|
|
jre-hotspot = import ./jdk-linux-base.nix sources.openjdk11.linux.jre.hotspot;
|
|
|
|
jdk-openj9 = import ./jdk-linux-base.nix sources.openjdk11.linux.jdk.openj9;
|
|
|
|
jre-openj9 = import ./jdk-linux-base.nix sources.openjdk11.linux.jre.openj9;
|
2018-10-13 16:42:21 +02:00
|
|
|
}
|