summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-sdk
diff options
context:
space:
mode:
authorThomas Mader <thomas.mader@gmail.com>2017-08-27 19:10:23 +0200
committerThomas Mader <thomas.mader@gmail.com>2017-09-02 08:35:07 +0200
commit2a0f1ecdc81074158ed2e33c53016cf8f3a0f227 (patch)
treeef282bbb93b16c05192281f81f2e0ed6a91ddee2 /pkgs/os-specific/darwin/apple-sdk
parent930b01ab3d6066d2a7313c3d54d392d8e040630f (diff)
downloadnixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.tar
nixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.tar.gz
nixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.tar.bz2
nixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.tar.lz
nixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.tar.xz
nixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.tar.zst
nixpkgs-2a0f1ecdc81074158ed2e33c53016cf8f3a0f227.zip
apple-sdk: Move cf-private first in list, otherwise the build fails because CoreFoundation/CFAttributedString.h could not be found.
The problem appeared when building ldc on Mac OSX. See also 13778.
Diffstat (limited to 'pkgs/os-specific/darwin/apple-sdk')
-rw-r--r--pkgs/os-specific/darwin/apple-sdk/frameworks.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
index 5475b664170..7b930e86a39 100644
--- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
+++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
@@ -46,7 +46,8 @@ with frameworks; with libs; {
   ExceptionHandling       = [];
   FWAUserLib              = [];
   ForceFeedback           = [ CF IOKit ];
-  Foundation              = [ CF libobjc Security ApplicationServices SystemConfiguration ];
+  # cf-private was moved first in list because of https://github.com/NixOS/nixpkgs/pull/28635
+  Foundation              = [ cf-private CF libobjc Security ApplicationServices SystemConfiguration ];
   GLKit                   = [ CF ];
   GLUT                    = [ OpenGL ];
   GSS                     = [];