summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/Libc/default.nix
blob: 6ff3cec2f1eb177252be8276b05fde01d1e154f0 (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
{ appleDerivation', stdenvNoCC, ed, unifdef, Libc_10-9 }:

appleDerivation' stdenvNoCC {
  nativeBuildInputs = [ ed unifdef ];

  patches = [
    ./0001-Define-TARGET_OS_EMBEDDED-in-std-lib-io-if-not-defin.patch
  ];

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

    cp ${./CrashReporterClient.h} $out/include/CrashReporterClient.h

    cp ${Libc_10-9}/include/NSSystemDirectories.h $out/include
  '';

  appleHeaders = builtins.readFile ./headers.txt;
}