From 2066ac2956b138222537379cf9c4172895e60e9a Mon Sep 17 00:00:00 2001 From: Kevin Quick Date: Wed, 19 Aug 2015 10:15:38 -0700 Subject: [PATCH] Specify no-tests cabal flag for vty-ui under ghc 7.10.x --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 8c8498b7a136..87b1d34f7ede 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -268,4 +268,7 @@ self: super: { # https://github.com/haskell/haddock/issues/427 haddock = dontCheck super.haddock; + # The tests in vty-ui do not build, but vty-ui itself builds. + vty-ui = enableCabalFlag super.vty-ui "no-tests"; + }