nixpkgs/pkgs/development/compilers/openjdk/meta.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
496 B
Nix
Raw Normal View History

lib: version: with lib; {
2021-06-16 23:22:29 +00:00
homepage = "https://openjdk.java.net/";
2021-06-16 10:40:15 +00:00
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."
];
}