nixpkgs/pkgs/os-specific/darwin/apple-source-releases/Libc/825_40_1.nix
2018-05-06 07:20:03 +00:00

14 lines
302 B
Nix

{ stdenv, 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
'';
}