mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
10 lines
266 B
Nix
10 lines
266 B
Nix
{ lib }:
|
|
|
|
let
|
|
sources = lib.importJSON ./sources.json;
|
|
in
|
|
{
|
|
jdk-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk17.mac.jdk.hotspot; };
|
|
jre-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk17.mac.jre.hotspot; };
|
|
}
|