core/pkgs/by-name/ja/java/openjdk/meta.nix

20 lines
541 B
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
lib: version:
with lib; {
2024-05-02 00:46:19 +00:00
homepage = "https://openjdk.java.net/";
license = licenses.gpl2Only;
description = "The open-source Java Development Kit";
maintainers = with maintainers; [ edwtjo ];
2024-05-13 21:24:10 +00:00
platforms = [
"i686-linux"
"x86_64-linux"
"aarch64-linux"
"armv7l-linux"
"armv6l-linux"
"powerpc64le-linux"
2024-05-02 00:46:19 +00:00
];
2024-05-13 21:24:10 +00:00
mainProgram = "java";
knownVulnerabilities = optionals
(builtins.elem (versions.major version) [ "12" "13" "14" "15" "16" "18" ])
[ "This OpenJDK version has reached its end of life." ];
2024-05-02 00:46:19 +00:00
}