Disable test suites of Haskell packages RSA and kademlia.

Those test suites run for 2+ hours and thus fail with a timeout error.
This commit is contained in:
Peter Simons 2015-09-02 12:27:36 +02:00
parent 873a6ce9a8
commit c456073e03

View file

@ -89,6 +89,12 @@ self: super: {
yices-easy = dontDistribute super.yices-easy;
yices-painless = dontDistribute super.yices-painless;
# https://github.com/GaloisInc/RSA/issues/9
RSA = dontCheck super.RSA;
# https://github.com/froozen/kademlia/issues/2
kademlia = dontCheck super.kademlia;
# Won't find it's header files without help.
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";