We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 095752e commit f4ae605Copy full SHA for f4ae605
test/embed-file/default.nix
@@ -7,7 +7,10 @@ let
7
project = project' {
8
inherit compiler-nix-name evalPackages;
9
src = testSrc "embed-file";
10
- # cabalProjectLocal = builtins.readFile ../cabal.project.local;
+ cabalProjectLocal = builtins.readFile ../cabal.project.local
11
+ + lib.optionalString (haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64) ''
12
+ constraints: text -simdutf
13
+ '';
14
};
15
16
packages = project.hsPkgs;
0 commit comments