From 5a216cd7ed6e6c6e3694e1708ad3d499cb0b9d99 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Sun, 10 Jun 2018 15:06:24 -0400 Subject: [PATCH] ghcjs: disable some checks --- pkgs/development/haskell-modules/configuration-ghcjs.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index c0468673467..8462ab254c2 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -201,4 +201,7 @@ self: super: # triggers an internal pattern match failure in haddock # https://github.com/haskell/haddock/issues/553 wai = dontHaddock super.wai; + + base-orphans = dontCheck super.base-orphans; + distributive = dontCheck super.distributive; }