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

appleDerivation {
  phases = [ "unpackPhase" "installPhase" ];

  buildInputs = [ 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
  '';
}