From de613e08dc5ef8dfc497bd3de59363dfccabfe42 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 31 Mar 2016 12:06:50 +0200 Subject: [PATCH] haskell-doctest: use version 0.11.0 when compiling with GHC 8.0.x Fixes https://github.com/sol/doctest/issues/125. --- 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 f909336e669e..e39002b8dec4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -49,4 +49,7 @@ self: super: { # Deviate from Stackage here to fix lots of builds. transformers-compat = super.transformers-compat_0_5_1_4; + # https://github.com/sol/doctest/issues/125 + doctest = self.doctest_0_11_0; + }