summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-01-17 10:50:29 +0100
committerPeter Simons <simons@cryp.to>2016-01-17 12:29:02 +0100
commit1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5 (patch)
treee23f0cf1e0f593f3f5dc815a7acc6a10a684bef3 /pkgs/development/haskell-modules
parentd3d0978abff4c95027e7c7cdf7ede7476accb26e (diff)
downloadnixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.tar
nixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.tar.gz
nixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.tar.bz2
nixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.tar.lz
nixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.tar.xz
nixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.tar.zst
nixlib-1c74ad9f04a03bdf5f2c28caa8e01d9127ba10c5.zip
haskell-transformers-compat: use latest version when building with GHC 8.0.x.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index e4bc4e5d734e..cc5034008bb6 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -45,6 +45,9 @@ self: super: {
   # Older versions of QuickCheck don't support our version of Template Haskell.
   QuickCheck = self.QuickCheck_2_8_2;
 
+  # Older versions don't support our version of transformers.
+  transformers-compat = self.transformers-compat_0_5_1_4;
+
   # https://github.com/hspec/HUnit/issues/7
   HUnit = dontCheck super.HUnit;