summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-02-20 18:21:47 +0100
committerPeter Simons <simons@cryp.to>2018-02-23 17:58:17 +0100
commitd035fc1e76eb93487ef69a49bf190f2922d4d803 (patch)
tree1c5a62b5a3e57751e14b73e5b1336aef29e804d5 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parentd87fcc7d43a46805a662a08506af10068130d04c (diff)
downloadnixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.tar
nixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.tar.gz
nixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.tar.bz2
nixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.tar.lz
nixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.tar.xz
nixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.tar.zst
nixlib-d035fc1e76eb93487ef69a49bf190f2922d4d803.zip
haskell-parsec: fix build with GHC 7.10.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-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 286b382e1973..c63ec7b70f78 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -197,6 +197,7 @@ self: super: {
   mono-traversable = addBuildDepend super.mono-traversable self.semigroups;
   natural-transformation = addBuildDepend super.natural-transformation self.semigroups;
   optparse-applicative = addBuildDepends super.optparse-applicative [self.semigroups self.fail];
+  parsec = addBuildDepends super.parsec [self.fail self.semigroups];
   QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
   reflection = addBuildDepend super.reflection self.semigroups;
   semigroups = addBuildDepends (dontCheck super.semigroups) (with self; [hashable tagged text unordered-containers]);