Skip to content

Commit

Permalink
haskell-QuickCheck: fix build with ghc-7.6.x
Browse files Browse the repository at this point in the history
(cherry picked from commit e090869)
  • Loading branch information
peti committed Mar 7, 2017
1 parent 7206060 commit 83ba40c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
Expand Up @@ -100,8 +100,12 @@ self: super: {
semigroups = addBuildDepends super.semigroups (with self; [bytestring-builder nats tagged unordered-containers transformers]);
lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
distributive = addBuildDepend super.distributive self.semigroups;
QuickCheck = addBuildDepend super.QuickCheck self.semigroups;

# Haddock doesn't cope with the new markup.
bifunctors = dontHaddock super.bifunctors;

# Breaks a dependency cycle between QuickCheck and semigroups
unordered-containers = dontCheck super.unordered-containers;

}

0 comments on commit 83ba40c

Please sign in to comment.