Merge pull request #109093 from poscat0x04/break-tasty-cycle

Break various dependency cycles
This commit is contained in:
Dennis Gosnell 2021-01-12 22:49:30 +09:00 committed by GitHub
commit 0d4fdbab4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -547,6 +547,12 @@ self: super: builtins.intersectAttrs super {
# Break infinite recursion cycle between devtools and mprelude.
devtools = super.devtools.override { mprelude = dontCheck super.mprelude; };
# Break dependency cycle between tasty-hedgehog and tasty-expected-failure
tasty-hedgehog = dontCheck super.tasty-hedgehog;
# Break dependency cycle between hedgehog, tasty-hedgehog and lifted-async
lifted-async = dontCheck super.lifted-async;
# loc and loc-test depend on each other for testing. Break that infinite cycle:
loc-test = super.loc-test.override { loc = dontCheck self.loc; };