haskell-QuickCheck: fix build with GHC 7.8.x
This commit is contained in:
parent
2553ceb982
commit
a77e74d409
@ -139,10 +139,15 @@ self: super: {
|
|||||||
conduit = addBuildDepend super.conduit self.void;
|
conduit = addBuildDepend super.conduit self.void;
|
||||||
conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void;
|
conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void;
|
||||||
|
|
||||||
|
# Breaks a dependency cycle between QuickCheck and semigroups
|
||||||
|
hashable = dontCheck super.hashable;
|
||||||
|
unordered-containers = dontCheck super.unordered-containers;
|
||||||
|
|
||||||
# Needs additional inputs on pre 7.10.x compilers.
|
# Needs additional inputs on pre 7.10.x compilers.
|
||||||
semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers]);
|
semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers]);
|
||||||
lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
|
lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
|
||||||
distributive = addBuildDepend super.distributive self.semigroups;
|
distributive = addBuildDepend super.distributive self.semigroups;
|
||||||
|
QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
|
||||||
|
|
||||||
# Haddock doesn't cope with the new markup.
|
# Haddock doesn't cope with the new markup.
|
||||||
bifunctors = dontHaddock super.bifunctors;
|
bifunctors = dontHaddock super.bifunctors;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user