summary refs log tree commit diff
diff options
context:
space:
mode:
authorMoritz Kiefer <moritz.kiefer@purelyfunctional.org>2017-09-03 07:50:40 +0200
committerMoritz Kiefer <moritz.kiefer@purelyfunctional.org>2017-09-03 07:50:40 +0200
commit243952d9d44ec42a05821849a7fdf0f101b8d126 (patch)
treef019c24d39056aa7873fcf2bce6da5e64b45465c
parentbb036a327cca6601900991f70daaf82152de243c (diff)
downloadnixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.tar
nixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.tar.gz
nixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.tar.bz2
nixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.tar.lz
nixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.tar.xz
nixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.tar.zst
nixlib-243952d9d44ec42a05821849a7fdf0f101b8d126.zip
haskell/natural-transformation: add dependency on semigroups for GHC 7.10
-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 18040e9fb3c7..656d21c739f9 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: {
   semigroups = addBuildDepends (dontCheck super.semigroups) (with self; [hashable tagged text unordered-containers]);
   texmath = addBuildDepend super.texmath self.network-uri;
   yesod-auth-oauth2 = overrideCabal super.yesod-auth-oauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.load-env self.yesod ]; });
+  natural-transformation = addBuildDepend super.natural-transformation self.semigroups;
   # cereal must have `fail` in pre-ghc-8.0.x versions
   # also tests require bytestring>=0.10.8.1
   cereal = dontCheck (addBuildDepend super.cereal self.fail);