uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,50 @@
|
|||
{ lib, appleDerivation, xcbuildHook, launchd }:
|
||||
|
||||
appleDerivation {
|
||||
nativeBuildInputs = [ xcbuildHook launchd ];
|
||||
|
||||
patchPhase = ''
|
||||
# NOTE: these hashes must be recalculated for each version change
|
||||
|
||||
# disables:
|
||||
# - su ('security/pam_appl.h' file not found)
|
||||
# - find (Undefined symbol '_get_date')
|
||||
# - w (Undefined symbol '_res_9_init')
|
||||
# - expr
|
||||
substituteInPlace shell_cmds.xcodeproj/project.pbxproj \
|
||||
--replace "FCBA168714A146D000AA698B /* PBXTargetDependency */," "" \
|
||||
--replace "FCBA165914A146D000AA698B /* PBXTargetDependency */," "" \
|
||||
--replace "FCBA169514A146D000AA698B /* PBXTargetDependency */," "" \
|
||||
--replace "FCBA165514A146D000AA698B /* PBXTargetDependency */," ""
|
||||
|
||||
# disable w, test install
|
||||
# get rid of permission stuff
|
||||
substituteInPlace xcodescripts/install-files.sh \
|
||||
--replace 'ln -f "$BINDIR/w" "$BINDIR/uptime"' "" \
|
||||
--replace 'ln -f "$DSTROOT/bin/test" "$DSTROOT/bin/["' "" \
|
||||
--replace "-o root -g wheel -m 0755" "" \
|
||||
--replace "-o root -g wheel -m 0644" ""
|
||||
'';
|
||||
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
for f in Products/Release/*; do
|
||||
if [ -f $f ]; then
|
||||
install -D $f $out/usr/bin/$(basename $f)
|
||||
fi
|
||||
done
|
||||
|
||||
export DSTROOT=$out
|
||||
export SRCROOT=$PWD
|
||||
. xcodescripts/install-files.sh
|
||||
|
||||
mv $out/usr/* $out
|
||||
mv $out/private/etc $out
|
||||
rmdir $out/usr $out/private
|
||||
'';
|
||||
|
||||
meta = {
|
||||
platforms = lib.platforms.darwin;
|
||||
maintainers = with lib.maintainers; [ matthewbauer ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue