summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk8-linux.nix
blob: c2a4085f730c8b48e97ad6854b76ed20fe2beff2 (plain) (blame)
1
2
3
4
5
6
7
8
9
let
  sources = builtins.fromJSON (builtins.readFile ./sources.json);
in
{
  jdk-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk8.linux.jdk.hotspot; };
  jre-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk8.linux.jre.hotspot; };
  jdk-openj9 = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk8.linux.jdk.openj9; };
  jre-openj9 = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk8.linux.jre.openj9; };
}