haskell-devtools: break infinite recursion with mprelude

This commit is contained in:
Peter Simons 2020-05-29 18:23:30 +02:00
parent 5244ef40ce
commit eb1e07865e

View File

@ -542,6 +542,9 @@ self: super: builtins.intersectAttrs super {
# Break infinite recursion cycle between tasty and clock.
clock = dontCheck super.clock;
# Break infinite recursion cycle between devtools and mprelude.
devtools = super.devtools.override { mprelude = dontCheck super.mprelude; };
# loc and loc-test depend on each other for testing. Break that infinite cycle:
loc-test = super.loc-test.override { loc = dontCheck self.loc; };