haskell-rematch-text: fix build by disabling the test suite

This commit is contained in:
Peter Simons 2015-02-08 13:02:11 +01:00
parent b862282083
commit 8b59b35dd2
2 changed files with 3 additions and 4 deletions

View file

@ -444,8 +444,9 @@ self: super: {
# Upstream notified by e-mail.
OpenGLRaw21 = markBrokenVersion "1.2.0.1" super.OpenGLRaw21;
# module missing: https://github.com/tcrayford/rematch/issues/5
rematch = dontCheck super.rematch;
# Missing module.
rematch = dontCheck super.rematch; # https://github.com/tcrayford/rematch/issues/5
rematch-text = dontCheck super.rematch-text; # https://github.com/tcrayford/rematch/issues/6
} // {

View file

@ -96493,7 +96493,6 @@ self: {
testDepends = [ base hspec HUnit ];
description = "A simple api for matchers";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rematch-text" = callPackage
@ -96506,7 +96505,6 @@ self: {
testDepends = [ base hspec HUnit rematch text ];
description = "`rematch` matchers for Data.Text";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"remote" = callPackage