haskell.packages.ghc901.mono-traversable: unbreak

GHC 9.0.x seems to require that the `Main` module also defines the
`main` IO action and does not just import it. This is the case with
mono-traversable's test suite which is why we (temporarily) disable it.
This commit is contained in:
sternenseemann 2021-06-10 15:35:50 +02:00
parent 362c8da809
commit f8c8bb04a5

View file

@ -107,4 +107,8 @@ self: super: {
# 0.29 introduced support for GHC 9.0.x, stackage has 0.28
cryptonite = super.cryptonite_0_29;
# GHC 9.0.x doesn't like `import Spec (main)` in Main.hs
# https://github.com/snoyberg/mono-traversable/issues/192
mono-traversable = dontCheck super.mono-traversable;
}