Turn off test broken by latest hspec-core (#1393)

This commit is contained in:
Hamish Mackenzie 2022-03-07 20:31:52 +13:00 committed by GitHub
parent 150c7b98d4
commit b1113d486f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,8 @@ in recurseIntoAttrs {
# When using ghcjs on darwin this test fails with
# ReferenceError: h$hs_clock_darwin_gettime is not defined
# https://github.com/input-output-hk/haskell.nix/issues/925
meta.disabled = stdenv.hostPlatform.isGhcjs;
# Also `hspec` now depends on `ghc`, which breaks this test for cross compilation
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWindows;
ifdInputs = {
inherit (project) plan-nix;
};