about summary refs log tree commit diff
path: root/pkgs/development/compilers/openjdk/meta.nix
blob: 04ed684eefab5e801ce80dcf90790f4c96cde7b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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."
  ];
}