about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2015-01-09 16:18:16 -0500
committerShea Levy <shea@shealevy.com>2015-01-09 16:18:16 -0500
commit69f5738668df4498b2e64a9a76abf90b50b938f1 (patch)
tree415fa0e655a7b9ab4b44d454bc7fb953aba5a5e4 /pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix
parent4d325bcede5b6a1a75019ed70696d4985d72ed69 (diff)
downloadnixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.tar
nixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.tar.gz
nixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.tar.bz2
nixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.tar.lz
nixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.tar.xz
nixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.tar.zst
nixlib-69f5738668df4498b2e64a9a76abf90b50b938f1.zip
attoparsec: Fix build for 7.10
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix3
1 files changed, 3 insertions, 0 deletions
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 c2f763c68ee3..1698556d9b94 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; });