From 48a20a63ceeeee4471f129a8e22303f005ed5487 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 23 Jan 2015 11:38:49 +0100 Subject: [PATCH] haskell-alex: fix build with GHC 7.10.1-rc1 (by disabling the failing test suite) --- 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 4dfb4ab96b9..1f975c44b91 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -82,4 +82,7 @@ self: super: { # https://github.com/ndmitchell/extra/issues/4 extra = dontCheck super.extra; + # Test suite fails in "/tokens_bytestring_unicode.g.bin". + alex = dontCheck super.alex; + }