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 e4bc4e5d734..cc5034008bb 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;