1{ }: 2{ 3 buildInputs ? [ ], 4 ... 5}: 6{ 7 postPatch = '' 8 if [ "$pname" == "flutter-tools" ]; then 9 # Use arm64 instead of arm64e. 10 substituteInPlace lib/src/ios/xcodeproj.dart \ 11 --replace-fail arm64e arm64 12 fi 13 ''; 14}