about 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-03-12 10:30:47 +0100
committerPeter Simons <simons@cryp.to>2018-03-12 14:31:00 +0100
commit729a26d8756a1d9d7cac73f355342bfc706885fe (patch)
tree9da17f0b0197e8918ee4ca7dc4ec5c34925f29f6 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parentd9ed7a264282910e05e0011553f9714670baa306 (diff)
downloadnixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.tar
nixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.tar.gz
nixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.tar.bz2
nixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.tar.lz
nixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.tar.xz
nixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.tar.zst
nixlib-729a26d8756a1d9d7cac73f355342bfc706885fe.zip
haskell-parser-combinators: 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 4635fdc52815..eb8497335433 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -199,6 +199,7 @@ self: super: {
   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];
+  parser-combinators = addBuildDepend super.parser-combinators 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]);