mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
dacd54d3f7
https://endoflife.date/java https://www.azul.com/products/azul-support-roadmap/ Related: #170825
12 lines
496 B
Nix
12 lines
496 B
Nix
lib: version: with lib; {
|
|
homepage = "https://openjdk.java.net/";
|
|
license = licenses.gpl2Only;
|
|
description = "The open-source Java Development Kit";
|
|
maintainers = with maintainers; [ edwtjo asbachb ];
|
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "armv7l-linux" "armv6l-linux" ];
|
|
mainProgram = "java";
|
|
knownVulnerabilities = optionals (builtins.elem (versions.major version) [ "12" "13" "14" "15" "16" ]) [
|
|
"This OpenJDK version has reached its end of life."
|
|
];
|
|
}
|