From 69f5738668df4498b2e64a9a76abf90b50b938f1 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 9 Jan 2015 16:18:16 -0500 Subject: [PATCH] attoparsec: Fix build for 7.10 --- pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix index c2f763c68ee..1698556d9b9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix @@ -61,6 +61,9 @@ self: super: { patchPhase = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal"; }); + # bos/attoparsec#92 + attoparsec = overrideCabal super.attoparsec (drv: { doCheck = false; }); + # Test suite fails with some (seemingly harmless) error. # https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24 syb = overrideCabal super.syb (drv: { doCheck = false; });