pcl: fix build on darwin

This has been broken on Hydra for a while (presumably due to the SDK
being out of date). Fix it by using the 11.0 SDK.
This commit is contained in:
Alex James 2023-12-18 19:42:57 -06:00
parent adce32e028
commit 9c90a963a0
No known key found for this signature in database
GPG Key ID: 2811C5BA55DA7094

View File

@ -24476,7 +24476,8 @@ with pkgs;
pcg_c = callPackage ../development/libraries/pcg-c { };
pcl = libsForQt5.callPackage ../development/libraries/pcl {
inherit (darwin.apple_sdk.frameworks) Cocoa AGL OpenGL;
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
inherit (darwin.apple_sdk_11_0.frameworks) Cocoa AGL OpenGL;
};
pcre = callPackage ../development/libraries/pcre { };