Skip to content

Commit

Permalink
darwin.moltenvk: use the 12.3 SDK
Browse files Browse the repository at this point in the history
Additionally, specify a 10.15 deployment target. According to the upstream documentation, 10.15 is the minimum macOS release supported at runtime.
  • Loading branch information
reckenrode committed Jul 12, 2024
1 parent 1542e50 commit f635e39
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pkgs/top-level/darwin-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,13 @@ impure-cmds // appleSourcePackages // chooseLibs // {

lsusb = callPackage ../os-specific/darwin/lsusb { };

moltenvk = pkgs.darwin.apple_sdk_11_0.callPackage ../os-specific/darwin/moltenvk {
inherit (apple_sdk_11_0.frameworks) AppKit Foundation Metal QuartzCore;
inherit (apple_sdk_11_0.libs) simd;
moltenvk = callPackage ../os-specific/darwin/moltenvk {
stdenv = pkgs.overrideSDK stdenv {
darwinMinVersion = "10.15";
darwinSdkVersion = "12.3";
};
inherit (apple_sdk.frameworks) AppKit Foundation Metal QuartzCore;
inherit (apple_sdk.libs) simd;
};

openwith = callPackage ../os-specific/darwin/openwith { };
Expand Down

0 comments on commit f635e39

Please sign in to comment.