haskellPackages.system-fileio: disable test suite on darwin

Can't be expected to work since macOS doesn't quite have a
POSIX file system. Resolves https://github.com/NixOS/nixpkgs/issues/404867.
This commit is contained in:
sternenseemann
2025-05-14 16:46:31 +02:00
parent dac052eb34
commit 2a75c01bee

View File

@@ -117,6 +117,10 @@ self: super:
# https://github.com/haskell-foundation/foundation/pull/412
foundation = dontCheck super.foundation;
# Test suite attempts to create illegal paths on HFS+
# https://github.com/fpco/haskell-filesystem/issues/37
system-fileio = dontCheck super.system-fileio;
llvm-hs = overrideCabal (oldAttrs: {
# One test fails on darwin.
doCheck = false;