From 93b75f62848756764e9102cdd3fe93388afeb98a Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 9 Jan 2015 14:07:36 -0500 Subject: [PATCH] ghc-ng-7.10: More doctest fixes --- pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix | 2 ++ 1 file changed, 2 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 b61705021b4..2f8d7065f85 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix @@ -63,6 +63,8 @@ self: super: { # doctest doesn't work with GHC 7.10.x. # https://github.com/sol/doctest/issues/94 cabal2nix = overrideCabal super.cabal2nix (drv: { doCheck = false; }); + comonad = overrideCabal super.comonad (drv: { doCheck = false; }); + distributive = overrideCabal super.distributive (drv: { doCheck = false; }); hackage-db = overrideCabal super.hackage-db (drv: { doCheck = false; }); hsemail = overrideCabal super.hsemail (drv: { doCheck = false; }); }