From 68733c16f52cfc30ee1550fa362f5fb126f0e0a7 Mon Sep 17 00:00:00 2001 From: Ivan Babrou Date: Tue, 9 Feb 2021 13:58:55 -0800 Subject: [PATCH] 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. ``` --- pkgs/os-specific/darwin/apple-sdk-11.0/frameworks.nix | 6 +++--- 1 file 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; };