about summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk16-darwin.nix
blob: 4eef76cb63129c278afa910790c5b9948a1fcd31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ lib }:

let
  sources = import ./sources.nix;
in
{
  jdk-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jdk.hotspot; knownVulnerabilities = [ "Support ended" ]; };
  jre-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jre.hotspot; knownVulnerabilities = [ "Support ended" ]; };
  jdk-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jdk.openj9; knownVulnerabilities = [ "Support ended" ]; };
  jre-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jre.openj9; knownVulnerabilities = [ "Support ended" ]; };
}