core/pkgs/by-name/ja/java/adoptopenjdk-bin/jdk13-darwin.nix
2024-06-30 09:16:52 +01:00

24 lines
680 B
Nix

{ lib }:
let
sources = lib.importJSON ./sources.json;
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" ];
};
}