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. ```
This commit is contained in:
parent
d0eff87f68
commit
68733c16f5
1 changed files with 3 additions and 3 deletions
|
@ -26,18 +26,18 @@
|
||||||
CallKit = {};
|
CallKit = {};
|
||||||
Carbon = { inherit ApplicationServices CoreServices Foundation IOKit QuartzCore Security libobjc; };
|
Carbon = { inherit ApplicationServices CoreServices Foundation IOKit QuartzCore Security libobjc; };
|
||||||
ClassKit = {};
|
ClassKit = {};
|
||||||
CloudKit = {};
|
CloudKit = { inherit CoreLocation; };
|
||||||
Cocoa = { inherit AppKit CoreData; };
|
Cocoa = { inherit AppKit CoreData; };
|
||||||
Collaboration = {};
|
Collaboration = {};
|
||||||
ColorSync = {};
|
ColorSync = {};
|
||||||
Combine = {};
|
Combine = {};
|
||||||
Contacts = {};
|
Contacts = {};
|
||||||
ContactsUI = {};
|
ContactsUI = {};
|
||||||
CoreAudio = { inherit IOKit; };
|
CoreAudio = { inherit IOKit CoreAudioTypes; };
|
||||||
CoreAudioKit = { inherit AudioUnit; };
|
CoreAudioKit = { inherit AudioUnit; };
|
||||||
CoreAudioTypes = {};
|
CoreAudioTypes = {};
|
||||||
CoreBluetooth = {};
|
CoreBluetooth = {};
|
||||||
CoreData = {};
|
CoreData = { inherit CloudKit; };
|
||||||
CoreDisplay = {};
|
CoreDisplay = {};
|
||||||
CoreFoundation = { inherit libobjc; };
|
CoreFoundation = { inherit libobjc; };
|
||||||
CoreGraphics = { inherit Accelerate IOKit IOSurface SystemConfiguration; };
|
CoreGraphics = { inherit Accelerate IOKit IOSurface SystemConfiguration; };
|
||||||
|
|
Loading…
Reference in a new issue