haskellPackages.tasty-discover: bootstrap itself using an untested build

The tasty-discover test suite depends on tasty-discover in $PATH during
test-suite compilation. Adding an untested build of itself to build
tools fixes the problem, without putting the untested version in
the package set.
This commit is contained in:
Robert Hensing 2017-05-01 15:47:36 +02:00
parent 92f53af64d
commit 14244d0f33

View file

@ -494,6 +494,7 @@ self: super: {
# Depends on itself for testing
doctest-discover = addBuildTool super.doctest-discover (dontCheck super.doctest-discover);
tasty-discover = addBuildTool super.tasty-discover (dontCheck super.tasty-discover);
# https://github.com/bos/aeson/issues/253
aeson = dontCheck super.aeson;