core/pkgs/by-name/ja/java/adoptopenjdk-bin/jdk13-darwin.nix
2024-05-13 22:24:10 +01:00

22 lines
678 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" ];
};
}