summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-03-05 20:57:41 +0100
committerGitHub <noreply@github.com>2017-03-05 20:57:41 +0100
commite9265d3c3394e8d7aacfa76365189d9c8e2a46d9 (patch)
tree3c1482a0f2d575a4c7d5dfa74f09ed9069c42518 /pkgs/development
parent1e8d505e0302eadc5a012a94541a69c010053012 (diff)
parent2b174d5114a8b579ce146dbfce71daab8cd218aa (diff)
Merge pull request #23538 from ljli/fix-dependent-map
haskell: ghc710x packages: fix dependent-map
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 6a7fe29b80fa..54cd16957edc 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -191,6 +191,7 @@ self: super: {
unordered-containers = dontCheck super.unordered-containers;
# GHC versions prior to 8.x require additional build inputs.
+ dependent-map = addBuildDepend super.dependent-map self.semigroups;
distributive = addBuildDepend super.distributive self.semigroups;
mono-traversable = addBuildDepend super.mono-traversable self.semigroups;
attoparsec = addBuildDepends super.attoparsec (with self; [semigroups fail]);