core/pkgs/by-name/ja/java/adoptopenjdk-bin/jdk13-linux.nix

24 lines
788 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ stdenv, lib }:
let
variant = if stdenv.hostPlatform.isMusl then "alpine_linux" else "linux";
sources = lib.importJSON ./sources.json;
2024-05-13 21:24:10 +00:00
in {
jdk-hotspot = import ./jdk-linux-base.nix {
sourcePerArch = sources.openjdk13.${variant}.jdk.hotspot;
knownVulnerabilities = [ "Support ended" ];
};
jre-hotspot = import ./jdk-linux-base.nix {
sourcePerArch = sources.openjdk13.${variant}.jre.hotspot;
knownVulnerabilities = [ "Support ended" ];
};
jdk-openj9 = import ./jdk-linux-base.nix {
sourcePerArch = sources.openjdk13.${variant}.jdk.openj9;
knownVulnerabilities = [ "Support ended" ];
};
jre-openj9 = import ./jdk-linux-base.nix {
sourcePerArch = sources.openjdk13.${variant}.jre.openj9;
knownVulnerabilities = [ "Support ended" ];
};
2024-05-02 00:46:19 +00:00
}