Skip to content

Commit 0d7a0d7

Browse files
committedJan 31, 2018
titaniumenv: fix nasty IPA generation bug
1 parent b3970e7 commit 0d7a0d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ stdenv.mkDerivation {
2323
cd mobilesdk/*
2424
mv * 6.3.1.GA
2525
cd *
26-
26+
${stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") ''
27+
# Fixes a bad archive copying error when generating an IPA file
28+
sed -i -e "s|cp -rf|/bin/cp -rf|" iphone/cli/commands/_build.js
29+
''}
30+
2731
# Patch some executables
2832
2933
${if stdenv.system == "i686-linux" then

0 commit comments

Comments
 (0)