about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-01-17 14:02:29 +0100
committerPeter Simons <simons@cryp.to>2015-01-17 20:29:00 +0100
commit51457dd687c4ffdcfc54fece4fc0bb34e451e5cd (patch)
treec83b6977cf53401de44bcabe07b9b726d2314f1d /pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
parent3dae2156678d71c83253747928b95ebac3dd1b7c (diff)
downloadnixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.tar
nixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.tar.gz
nixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.tar.bz2
nixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.tar.lz
nixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.tar.xz
nixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.tar.zst
nixlib-51457dd687c4ffdcfc54fece4fc0bb34e451e5cd.zip
haskell-primitive: fix build with GHC 7.4.2
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix3
1 files changed, 3 insertions, 0 deletions
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 aa54f736dabf..593826be2e6d 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;
+
 }