adoptopenjdk-bin: add OpenJDK 13

This commit is contained in:
Ben Wolsieffer
2019-10-11 23:23:25 -04:00
parent 1658beb6a1
commit 34b4babed2
5 changed files with 195 additions and 17 deletions
@@ -0,0 +1,9 @@
let
sources = builtins.fromJSON (builtins.readFile ./sources.json);
in
{
jdk-hotspot = import ./jdk-linux-base.nix sources.openjdk13.linux.jdk.hotspot;
jre-hotspot = import ./jdk-linux-base.nix sources.openjdk13.linux.jre.hotspot;
jdk-openj9 = import ./jdk-linux-base.nix sources.openjdk13.linux.jdk.openj9;
jre-openj9 = import ./jdk-linux-base.nix sources.openjdk13.linux.jre.openj9;
}