From a9d7fff06c75c404f4de6053f38fa95e477591d6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 19 Apr 2015 20:05:11 +0200 Subject: [PATCH] haskell-bloomfilter: fix build with GHC 7.10.1 https://github.com/bos/bloomfilter/issues/11 --- 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 e73e7e7d743..003182197c1 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -334,4 +334,7 @@ self: super: { # The compat library is empty in the presence of mtl 2.2.x. mtl-compat = dontHaddock super.mtl-compat; + # https://github.com/bos/bloomfilter/issues/11 + bloomfilter = dontHaddock (appendConfigureFlag super.bloomfilter "--ghc-option=-XFlexibleContexts"); + }