about summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk17-linux.nix
blob: e069a8521d72e3b6ef33647e2623d55e724f91c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ stdenv, lib }:

let
  variant = if stdenv.hostPlatform.isMusl then "alpine_linux" else "linux";
  sources = lib.importJSON ./sources.json;
in
{
  jdk-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk17.${variant}.jdk.hotspot; };
  jre-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk17.${variant}.jre.hotspot; };
}