about summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk11-linux.nix
blob: 755ffaab271ec6443b74328a28591744ea85485d (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 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;
}