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

120 lines
4.9 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 }:
2015-06-21 00:29:42 +02:00
with frameworks; with libs; {
AGL = [ Carbon OpenGL ];
AVFoundation = [ ApplicationServices CoreGraphics ];
AVKit = [];
Accounts = [];
AddressBook = [ Carbon CF ];
2015-07-01 02:34:13 +02:00
AppKit = [ AudioToolbox 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 = [];
Cocoa = [];
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 ];
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 ];
Foundation = [ CF Security ApplicationServices AppKit SystemConfiguration ];
GLKit = [ CF ];
2015-06-21 00:29:42 +02:00
GLUT = [ GL OpenGL ];
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 ];
QTKit = [ QuickTime ];
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-06-21 00:29:42 +02:00
WebKit = [ ApplicationServices Carbon JavaScriptCore OpenGL X11 ];
# Umbrellas
2015-07-01 02:34:13 +02:00
Accelerate = [ CoreWLAN IOBluetooth ];
ApplicationServices = [ CF CoreServices CoreText ImageIO ];
Carbon = [ ApplicationServices CF CoreServices 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-06-21 00:29:42 +02:00
Quartz = [ QuickLook ];
QuartzCore = [ ApplicationServices CF CoreVideo OpenCL ];
2015-06-21 00:29:42 +02:00
}