Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishmack committed Nov 9, 2023
1 parent 18d0908 commit d068208
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/call-cabal-project-to-nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ let
inherit compiler-nix-name evalPackages;
# reuse the cabal-simple test project
src = testSrc "cabal-simple";
cabalProjectLocal = builtins.readFile ../cabal.project.local;
cabalProjectLocal = builtins.readFile ../cabal.project.local
+ lib.optionalString (haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64) ''
constraints: text -simdutf, text source
'';
};
pkgSet = mkCabalProjectPkgSet {
plan-pkgs = importAndFilterProject {
Expand Down

0 comments on commit d068208

Please sign in to comment.