haskell-clock & tasty: break infinite recursions

This commit is contained in:
Peter Simons 2019-08-10 11:23:49 +02:00
parent 9038403136
commit e10ae7afa6

View file

@ -506,6 +506,12 @@ self: super: builtins.intersectAttrs super {
'';
});
# Break infinite recursion cycle between QuickCheck and splitmix.
splitmix = dontCheck super.splitmix;
# Break infinite recursion cycle between tasty and clock.
clock = dontCheck super.clock;
# loc and loc-test depend on each other for testing. Break that infinite cycle:
loc-test = super.loc-test.override { loc = dontCheck self.loc; };