1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

Merge pull request #9345 from kquick/haskell-vty-ui-disable-tests

Specify no-tests cabal flag for vty-ui under ghc 7.10.x
This commit is contained in:
Peter Simons 2015-08-19 22:00:36 +02:00
commit 24664e9cb3

View file

@ -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";
}