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

24 lines
559 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
lib: version: with lib; {
homepage = "https://openjdk.java.net/";
license = licenses.gpl2Only;
description = "The open-source Java Development Kit";
maintainers = with maintainers; [ edwtjo ];
2024-06-30 08:16:52 +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-06-30 08:16:52 +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
}