From 15d7b7da1019de2c3619809c0195922d780628e5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 13 Apr 2016 09:37:16 +0200 Subject: [PATCH] haskell-bifunctors: use latest version 5.3 when compiling with GHC 8.0.x --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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 2e013ee940a..f7e795a6a4b 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -59,4 +59,7 @@ self: super: { comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33 comonad = self.comonad_5; + # Versions <= 5.2 don't compile with transformers 0.5 or later. + bifunctors = self.bifunctors_5_3; + }