summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-sdk-11.0/private-frameworks.nix
blob: f95932516d208bd4e152e5e011fed69598d9d2ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ frameworks, libobjc }: with frameworks;
# generated by hand to avoid exposing all private frameworks
# frameworks here are only the necessary ones used by public frameworks.
{
  AVFCapture = {};
  AVFCore = {};
  AddressBookCore = { inherit ContactsPersistence; };
  AudioToolboxCore = {};
  ContactsPersistence = {};
  GameCenterFoundation = {};
  GameCenterUI = {};
  GameCenterUICore = {};
  MediaRemote = {};
  PassKitCore = {};
  SignpostMetrics = {};
  SkyLight = {};
  UIFoundation = {};
  URLFormatting = {};

  # Also expose CoreSymbolication; used by `root` package.
  CoreSymbolication = {};

  # Also expose DebugSymbols; used by `llvmPackages_8.lldb` package.
  DebugSymbols = {};

  # Also expose DisplayServices; used by `sketchybar` package.
  DisplayServices = { inherit libobjc; };

  # Also expose MultitouchSupport; used by `chuck` package.
  MultitouchSupport = {};
}