about summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk13-darwin.nix
blob: 87beaf8ddaf866b7599bcaf140ec2af7b8534660 (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.openjdk13.mac.jdk.hotspot; knownVulnerabilities = ["Support ended"]; };
  jre-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk13.mac.jre.hotspot; knownVulnerabilities = ["Support ended"]; };
  jdk-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk13.mac.jdk.openj9; knownVulnerabilities = ["Support ended"]; };
  jre-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk13.mac.jre.openj9; knownVulnerabilities = ["Support ended"]; };
}