We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2297e commit 7e29adfCopy full SHA for 7e29adf
test/coverage/default.nix
@@ -29,7 +29,9 @@ in recurseIntoAttrs ({
29
# Does not work on ghcjs because it needs zlib. Wasm needs network fixed.
30
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWasm
31
# For some reason the `.tix` file is not created on armv7a android (not sure why)
32
- || stdenv.hostPlatform.isAndroid && stdenv.hostPlatform.isAarch32;
+ || stdenv.hostPlatform.isAndroid && stdenv.hostPlatform.isAarch32
33
+ # The `input.txt` is not written (or just not found) for mingwW64 (ucrt64 works ok)
34
+ || (stdenv.hostPlatform.isWindows && stdenv.hostPlatform.libc != "ucrt");
35
run = stdenv.mkDerivation {
36
name = "coverage-test";
37
0 commit comments