From e0b270efc9966d7cf8c70b3e3807b8f7af068bb8 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 12 Jan 2015 09:58:56 -0500 Subject: [PATCH] Fix http-date build on ghc 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 c489e8c6921..19b063686b6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix @@ -88,6 +88,9 @@ self: super: { # Test suite has stricter version bounds retry = dontCheck super.retry; + # Test suite fails with time >= 1.5 + http-date = dontCheck super.http-date; + # Version 1.19.5 fails its test suite. happy = dontCheck super.happy;