From aeeb7533ffd5175bd99754721fb6caaa08fdff9c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 23 Sep 2014 14:14:58 +0200 Subject: [PATCH] haskell-haskoin: disable test suite to fix the build https://github.com/haskoin/haskoin/issues/109 --- pkgs/development/libraries/haskell/haskoin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/haskoin/default.nix b/pkgs/development/libraries/haskell/haskoin/default.nix index 423127a95ec..d063cc919fc 100644 --- a/pkgs/development/libraries/haskell/haskoin/default.nix +++ b/pkgs/development/libraries/haskell/haskoin/default.nix @@ -18,11 +18,11 @@ cabal.mkDerivation (self: { mtl pbkdf QuickCheck split testFramework testFrameworkHunit testFrameworkQuickcheck2 text ]; + doCheck = false; meta = { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the Bitcoin protocol"; license = self.stdenv.lib.licenses.publicDomain; - # https://github.com/haskoin/haskoin/issues/109 - platforms = [ "x86_64-linux" ]; + platforms = self.ghc.meta.platforms; }; })