mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
12 lines
530 B
Nix
12 lines
530 B
Nix
lib: version: with lib; {
|
|
homepage = "https://openjdk.java.net/";
|
|
license = licenses.gpl2Only;
|
|
description = "Open-source Java Development Kit";
|
|
maintainers = with maintainers; [ edwtjo infinidoge ];
|
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "armv7l-linux" "armv6l-linux" "powerpc64le-linux" ];
|
|
mainProgram = "java";
|
|
knownVulnerabilities = optionals (builtins.elem (versions.major version) [ "12" "13" "14" "15" "16" "18" "19" "20" ]) [
|
|
"This OpenJDK version has reached its end of life."
|
|
];
|
|
}
|