From c456073e033fd629a5c524f150da06c2780a0f22 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 2 Sep 2015 12:27:36 +0200 Subject: [PATCH] Disable test suites of Haskell packages RSA and kademlia. Those test suites run for 2+ hours and thus fail with a timeout error. --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b0b93e2d530..759b1658968 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -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";