summary refs log tree commit diff
path: root/pkgs/os-specific/darwin
diff options
context:
space:
mode:
authorIvan Babrou <github@ivan.computer>2021-02-09 13:58:55 -0800
committerAndrew Childs <lorne@cons.org.nz>2021-05-17 00:27:04 +0900
commit68733c16f52cfc30ee1550fa362f5fb126f0e0a7 (patch)
treef9bf97cc2ebb066cc481225d08dab659ca1fd604 /pkgs/os-specific/darwin
parentd0eff87f6873ed244a294a8d6c81ec7a724d4f19 (diff)
downloadnixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.tar
nixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.tar.gz
nixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.tar.bz2
nixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.tar.lz
nixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.tar.xz
nixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.tar.zst
nixpkgs-68733c16f52cfc30ee1550fa362f5fb126f0e0a7.zip
darwin.apple_sdk.frameworks: add missing dependencies
```
/nix/store/5mgn511gbldf7xl5kjm27z9lj10xcycl-apple-framework-CoreData-11.0.0/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h:10:9: fatal error: 'CloudKit/CKDatabase.h' file not found
        ^~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
```

```
/nix/store/a7k7kqj08602785vsrss0xa85b08hik4-apple-framework-CloudKit-11.0.0/Library/Frameworks/CloudKit.framework/Headers/CKRecord.h:9:9: fatal error: 'CoreLocation/CLLocation.h' file not found
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
```
Diffstat (limited to 'pkgs/os-specific/darwin')
-rw-r--r--pkgs/os-specific/darwin/apple-sdk-11.0/frameworks.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/darwin/apple-sdk-11.0/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk-11.0/frameworks.nix
index 0a605c198a1..c8f8ccc4a08 100644
--- a/pkgs/os-specific/darwin/apple-sdk-11.0/frameworks.nix
+++ b/pkgs/os-specific/darwin/apple-sdk-11.0/frameworks.nix
@@ -26,18 +26,18 @@
   CallKit                          = {};
   Carbon                           = { inherit ApplicationServices CoreServices Foundation IOKit QuartzCore Security libobjc; };
   ClassKit                         = {};
-  CloudKit                         = {};
+  CloudKit                         = { inherit CoreLocation; };
   Cocoa                            = { inherit AppKit CoreData; };
   Collaboration                    = {};
   ColorSync                        = {};
   Combine                          = {};
   Contacts                         = {};
   ContactsUI                       = {};
-  CoreAudio                        = { inherit IOKit; };
+  CoreAudio                        = { inherit IOKit CoreAudioTypes; };
   CoreAudioKit                     = { inherit AudioUnit; };
   CoreAudioTypes                   = {};
   CoreBluetooth                    = {};
-  CoreData                         = {};
+  CoreData                         = { inherit CloudKit; };
   CoreDisplay                      = {};
   CoreFoundation                   = { inherit libobjc; };
   CoreGraphics                     = { inherit Accelerate IOKit IOSurface SystemConfiguration; };