From 40d135b6ad2788aad06fb1a6d7e1e30c42de861e Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 22 Apr 2015 15:18:56 +0200 Subject: [PATCH] GHC 7.10: Fix Data.AttoBencode. --- 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 da3e35930285..15a9d5a7f824 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -107,6 +107,9 @@ self: super: { # acid-state/safecopy#25 acid-state/safecopy#26 safecopy = dontCheck (super.safecopy); + # test suite broken, some instance is declared twice. + AttoBencode = dontCheck super.AttoBencode; + # bos/attoparsec#92 attoparsec = dontCheck super.attoparsec;