From 51457dd687c4ffdcfc54fece4fc0bb34e451e5cd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 14:02:29 +0100 Subject: [PATCH] haskell-primitive: 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 aa54f736dab..593826be2e6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -48,4 +48,7 @@ self: super: { # Haddock chokes on the prologue from the cabal file. ChasingBottoms = dontHaddock super.ChasingBottoms; + # https://github.com/haskell/primitive/issues/16 + primitive = dontCheck super.primitive; + }