xmake: fix build on x86_64-darwin
xmake requires macOS SDK >= 10.13.0, but Nixpkgs sticks to macOS 10.12.0 for x86_64-darwin now. Use 11.0 SDK as recommended by the doc.
This commit is contained in:
@@ -18916,8 +18916,8 @@ with pkgs;
|
||||
|
||||
webdis = callPackage ../development/tools/database/webdis { };
|
||||
|
||||
xmake = callPackage ../development/tools/build-managers/xmake {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
xmake = darwin.apple_sdk_11_0.callPackage ../development/tools/build-managers/xmake {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) CoreServices;
|
||||
};
|
||||
|
||||
xc3sprog = callPackage ../development/embedded/xc3sprog { };
|
||||
|
||||
Reference in New Issue
Block a user