30 lines
920 B
Nix
30 lines
920 B
Nix
{ stdenv, appleDerivation, unifdef }:
|
|
|
|
appleDerivation {
|
|
buildinputs = [ unifdef ];
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
preInstall = ''
|
|
substituteInPlace Makefile \
|
|
--replace "rsync -a --exclude=.svn --exclude=.git" "cp -r"
|
|
|
|
substituteInPlace Standard/Commands.in \
|
|
--replace "/bin/sh" "bash" \
|
|
--replace "/usr/bin/compress" "compress" \
|
|
--replace "/usr/bin/gzip" "gzip" \
|
|
--replace "/bin/pax" "pax" \
|
|
--replace "/usr/bin/tar" "tar" \
|
|
--replace "xcrun -find" "echo" \
|
|
--replace '$(Install_Program_Group) -s' '$(Install_Program_Group)' \
|
|
--replace '$(Install_Program_Mode) -s' '$(Install_Program_Mode)'
|
|
|
|
substituteInPlace ReleaseControl/Common.make \
|
|
--replace "/tmp" "$TMPDIR"
|
|
|
|
substituteInPlace ReleaseControl/BSDCommon.make \
|
|
--replace '$(shell xcrun -find -sdk $(SDKROOT) cc)' "cc"
|
|
|
|
export DSTROOT=$out
|
|
'';
|
|
}
|