adoptopenjdk-bin: add OpenJDK 8

This commit is contained in:
Ben Wolsieffer
2019-08-19 18:54:47 -04:00
parent 18e0f9d39f
commit ded7ec067f
7 changed files with 202 additions and 109 deletions
@@ -0,0 +1,9 @@
let
sources = builtins.fromJSON (builtins.readFile ./sources.json);
in
{
jdk-hotspot = import ./jdk-linux-base.nix sources.openjdk8.linux.jdk.hotspot;
jre-hotspot = import ./jdk-linux-base.nix sources.openjdk8.linux.jre.hotspot;
jdk-openj9 = import ./jdk-linux-base.nix sources.openjdk8.linux.jdk.openj9;
jre-openj9 = import ./jdk-linux-base.nix sources.openjdk8.linux.jre.openj9;
}