summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/Libc/825_40_1.nix
blob: 29aa3d64cb08b910f5f83dfc71e6c80a13ffdb41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ appleDerivation, ed, unifdef }:

appleDerivation {
  nativeBuildInputs = [ ed unifdef ];

  installPhase = ''
    export SRCROOT=$PWD
    export DSTROOT=$out
    export PUBLIC_HEADERS_FOLDER_PATH=include
    export PRIVATE_HEADERS_FOLDER_PATH=include
    bash xcodescripts/headers.sh
  '';
}