Files
hacker1024 4a7fb2c8ea Revert "flutterPackages: refactor"
This reverts commit fe90d5a666.
2026-04-12 20:41:26 +10:00

15 lines
238 B
Nix

{ }:
{
buildInputs ? [ ],
...
}:
{
# Use arm64 instead of arm64e.
postPatch = ''
if [ "$pname" == "flutter-tools" ]; then
substituteInPlace lib/src/ios/xcodeproj.dart \
--replace-fail arm64e arm64
fi
'';
}