summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorKevin Quick <quick@sparq.org>2015-08-19 10:15:38 -0700
committerKevin Quick <quick@sparq.org>2015-08-19 10:15:38 -0700
commit2066ac2956b138222537379cf9c4172895e60e9a (patch)
treeb212482f0ef95668c300f9c7e2886303f230c7e0 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parentd8b9521d643af4e03c526310d1495d0b535c16ef (diff)
downloadnixlib-2066ac2956b138222537379cf9c4172895e60e9a.tar
nixlib-2066ac2956b138222537379cf9c4172895e60e9a.tar.gz
nixlib-2066ac2956b138222537379cf9c4172895e60e9a.tar.bz2
nixlib-2066ac2956b138222537379cf9c4172895e60e9a.tar.lz
nixlib-2066ac2956b138222537379cf9c4172895e60e9a.tar.xz
nixlib-2066ac2956b138222537379cf9c4172895e60e9a.tar.zst
nixlib-2066ac2956b138222537379cf9c4172895e60e9a.zip
Specify no-tests cabal flag for vty-ui under ghc 7.10.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix3
1 files changed, 3 insertions, 0 deletions
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";
+
 }