From 72f06e79f50b84c0b0eee3d10eea59aec8f66ffe Mon Sep 17 00:00:00 2001 From: Peter Simons <simons@cryp.to> Date: Sun, 19 Apr 2015 20:18:13 +0200 Subject: [PATCH] haskell-tasty-rerun: fix build with GHC 7.10.1 --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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 003182197c1b..a97df0e5c1f3 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -337,4 +337,7 @@ self: super: { # https://github.com/bos/bloomfilter/issues/11 bloomfilter = dontHaddock (appendConfigureFlag super.bloomfilter "--ghc-option=-XFlexibleContexts"); + # https://github.com/ocharles/tasty-rerun/issues/5 + tasty-rerun = dontHaddock (appendConfigureFlag super.tasty-rerun "--ghc-option=-XFlexibleContexts"); + }