We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4dd6d2 commit f698fd3Copy full SHA for f698fd3
test/js-template-haskell/default.nix
@@ -29,7 +29,12 @@ in recurseIntoAttrs {
29
30
build = packages.js-template-haskell.components.library;
31
check = packages.js-template-haskell.checks.test;
32
-} // optionalAttrs (!stdenv.hostPlatform.isGhcjs) {
+} // optionalAttrs (!(
33
+ stdenv.hostPlatform.isGhcjs
34
+ || (stdenv.hostPlatform.isAarch64
35
+ && stdenv.hostPlatform.isMusl
36
+ && compiler-nix-name == "ghc9101")
37
+ )) {
38
build-profiled = packages.js-template-haskell.components.library.profiled;
39
check-profiled = packages.js-template-haskell.checks.test.profiled;
40
}
0 commit comments