nixpkgs/pkgs/os-specific/darwin/apple-sdk/frameworks.nix

121 lines
5.1 KiB
Nix
Raw Normal View History

2015-06-21 00:29:42 +02:00
# Current as of 10.9
# Epic weird knot-tying happening here.
# TODO: clean up the process for generating this and include it
{ frameworks, libs, CF, libobjc, cf-private }:
2015-06-21 00:29:42 +02:00
with frameworks; with libs; {
AGL = [ Carbon OpenGL ];
AVFoundation = [ ApplicationServices CoreGraphics ];
AVKit = [];
Accounts = [];
AddressBook = [ Carbon CF ];
2015-10-28 21:34:13 +01:00
AppKit = [ AudioToolbox Foundation QuartzCore ];
2015-06-21 00:29:42 +02:00
AppKitScripting = [];
AppleScriptKit = [];
AppleScriptObjC = [];
AppleShareClientCore = [ CoreServices ];
AudioToolbox = [ AudioUnit CoreAudio CF CoreMIDI ];
AudioUnit = [ Carbon CoreAudio CF ];
2015-06-21 00:29:42 +02:00
AudioVideoBridging = [ Foundation ];
Automator = [];
CFNetwork = [ CF ];
2015-06-21 00:29:42 +02:00
CalendarStore = [];
2015-10-28 21:40:10 +01:00
Cocoa = [ AppKit ];
2015-06-21 00:29:42 +02:00
Collaboration = [];
CoreAudio = [ CF IOKit ];
2015-06-21 00:29:42 +02:00
CoreAudioKit = [ AudioUnit ];
CoreData = [];
CoreGraphics = [ Accelerate CF IOKit IOSurface SystemConfiguration ];
2015-06-21 00:29:42 +02:00
CoreLocation = [];
CoreMIDI = [ CF ];
2015-06-21 00:29:42 +02:00
CoreMIDIServer = [];
CoreMedia = [ ApplicationServices AudioToolbox CoreAudio CF CoreGraphics CoreVideo ];
CoreMediaIO = [ CF CoreMedia ];
CoreText = [ CF CoreGraphics cf-private ];
CoreVideo = [ ApplicationServices CF CoreGraphics IOSurface OpenGL ];
2015-07-01 02:34:13 +02:00
CoreWLAN = [ SecurityFoundation ];
2015-06-21 00:29:42 +02:00
DVComponentGlue = [ CoreServices QuickTime ];
DVDPlayback = [];
DirectoryService = [ CF ];
DiscRecording = [ CF CoreServices IOKit ];
2015-06-21 00:29:42 +02:00
DiscRecordingUI = [];
DiskArbitration = [ CF IOKit ];
2015-06-21 00:29:42 +02:00
DrawSprocket = [ Carbon ];
EventKit = [];
ExceptionHandling = [];
FWAUserLib = [];
ForceFeedback = [ CF IOKit ];
2015-10-28 21:34:13 +01:00
Foundation = [ CF libobjc Security ApplicationServices SystemConfiguration ];
GLKit = [ CF ];
GLUT = [ OpenGL ];
2015-06-21 00:29:42 +02:00
GSS = [];
GameController = [];
GameKit = [ Foundation ];
ICADevices = [ Carbon CF IOBluetooth ];
2015-06-21 00:29:42 +02:00
IMServicePlugIn = [];
IOBluetoothUI = [ IOBluetooth ];
IOKit = [ CF ];
IOSurface = [ CF IOKit xpc ];
2015-06-21 00:29:42 +02:00
ImageCaptureCore = [];
ImageIO = [ CF CoreGraphics ];
2015-06-21 00:29:42 +02:00
InputMethodKit = [ Carbon ];
InstallerPlugins = [];
InstantMessage = [];
JavaFrameEmbedding = [];
JavaScriptCore = [ CF ];
2015-06-21 00:29:42 +02:00
Kerberos = [];
Kernel = [ CF IOKit ];
2015-06-21 00:29:42 +02:00
LDAP = [];
LatentSemanticMapping = [ Carbon CF ];
2015-06-21 00:29:42 +02:00
MapKit = [];
MediaAccessibility = [ CF CoreGraphics CoreText QuartzCore ];
MediaToolbox = [ AudioToolbox CF CoreMedia ];
NetFS = [ CF ];
2015-06-21 00:29:42 +02:00
OSAKit = [ Carbon ];
OpenAL = [];
2015-07-01 02:34:13 +02:00
OpenCL = [ IOSurface OpenGL ];
2015-06-21 00:29:42 +02:00
OpenGL = [];
2015-07-03 03:59:30 +02:00
PCSC = [ CoreData ];
2015-06-21 00:29:42 +02:00
PreferencePanes = [];
PubSub = [];
Python = [ ApplicationServices ];
2015-10-01 02:13:56 +02:00
QTKit = [ CoreMediaIO CoreMedia MediaToolbox QuickTime VideoToolbox ];
QuickLook = [ ApplicationServices CF ];
2015-06-21 00:29:42 +02:00
QuickTime = [ ApplicationServices AudioUnit Carbon CoreAudio CoreServices OpenGL QuartzCore ];
Ruby = [];
RubyCocoa = [];
SceneKit = [];
ScreenSaver = [];
Scripting = [];
ScriptingBridge = [];
Security = [ CF IOKit ];
2015-06-21 00:29:42 +02:00
SecurityFoundation = [];
SecurityInterface = [ Security ];
ServiceManagement = [ CF Security ];
2015-06-21 00:29:42 +02:00
Social = [];
SpriteKit = [];
StoreKit = [];
SyncServices = [];
SystemConfiguration = [ CF Security ];
2015-06-21 00:29:42 +02:00
TWAIN = [ Carbon ];
Tcl = [];
Tk = [ ApplicationServices Carbon X11 ];
VideoDecodeAcceleration = [ CF CoreVideo ];
VideoToolbox = [ CF CoreMedia CoreVideo ];
2015-10-01 02:13:56 +02:00
WebKit = [ ApplicationServices Carbon JavaScriptCore OpenGL ];
2017-01-21 01:00:10 +01:00
X11 = []; # used by Tk, should this exist?
2015-06-21 00:29:42 +02:00
# Umbrellas
2015-07-01 02:34:13 +02:00
Accelerate = [ CoreWLAN IOBluetooth ];
ApplicationServices = [ CF CoreServices CoreText ImageIO ];
2015-10-29 01:15:05 +01:00
Carbon = [ ApplicationServices CF CoreServices Foundation IOKit Security QuartzCore ];
2015-07-10 00:42:31 +02:00
CoreBluetooth = [];
CoreServices = [ CFNetwork CoreAudio CoreData CF DiskArbitration Security NetFS OpenDirectory ServiceManagement ];
2015-06-21 00:29:42 +02:00
IOBluetooth = [ IOKit ];
JavaVM = [];
2015-07-01 02:34:13 +02:00
OpenDirectory = [];
2015-10-01 02:13:56 +02:00
Quartz = [ QuickLook QTKit ];
QuartzCore = [ ApplicationServices CF CoreVideo OpenCL ];
2015-06-21 00:29:42 +02:00
}