From 5a595e7119d5ce3321ace4b0c87f38d82e6faa7b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Sep 2014 10:33:31 +0200 Subject: [PATCH] haskell-holy-project: disable the test suite to fix the build The test suite tries to access the network: | Test suite Tests: RUNNING... | All Tests | [...] | GithubAPI | Yann: FAIL | Exception: FailedConnectionException2 "api.github.com" 443 True getProtocolByName: does not exist (no such protocol name: tcp) | Jasper: FAIL | Exception: FailedConnectionException2 "api.github.com" 443 True getProtocolByName: does not exist (no such protocol name: tcp) | | 2 out of 16 tests failed (0.66s) | Test suite Tests: FAIL --- pkgs/development/libraries/haskell/holy-project/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/holy-project/default.nix b/pkgs/development/libraries/haskell/holy-project/default.nix index 708b740f64da..1fa7c558731c 100644 --- a/pkgs/development/libraries/haskell/holy-project/default.nix +++ b/pkgs/development/libraries/haskell/holy-project/default.nix @@ -21,6 +21,7 @@ cabal.mkDerivation (self: { Cabal HUnit QuickCheck smallcheck tasty tastyHunit tastyQuickcheck tastySmallcheck ]; + doCheck = false; meta = { homepage = "http://github.com/yogsototh/holy-project"; description = "Start your Haskell project with cabal, git and tests";