about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-sdk-12.3/frameworks/private.nix
blob: d58b28fa027158b7dabb6b112eb796fc8055adda (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
32
33
34
35
{ objc4, 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 (frameworks) ContactsPersistence;
  };
  AudioToolboxCore = { };
  ContactsPersistence = { };
  UIFoundation = { };
  GameCenterFoundation = { };
  GameCenterUI = { };
  GameCenterUICore = { };
  URLFormatting = { };
  SignpostMetrics = { };
  PassKitCore = { };
  SkyLight = { };

  # 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 = {
    libobjc = objc4;
  };

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