mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
haskell-rematch-text: fix build by disabling the test suite
This commit is contained in:
parent
b862282083
commit
8b59b35dd2
|
@ -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
|
||||
|
||||
} // {
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue