From 703bf2978d36277efdcbc1b9a1ccb27c649b2e2b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 16:03:28 +0100 Subject: [PATCH] haskell-unordered-containers: fix build with GHC 7.4.2 --- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 593826be2e6d..6ad8564d89ac 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -51,4 +51,7 @@ self: super: { # https://github.com/haskell/primitive/issues/16 primitive = dontCheck super.primitive; + # https://github.com/tibbe/unordered-containers/issues/96 + unordered-containers = dontCheck super.unordered-containers; + }