haskell-haskoin: disable test suite to fix the build

https://github.com/haskoin/haskoin/issues/109
This commit is contained in:
Peter Simons 2014-09-23 14:14:58 +02:00
parent 567084d71c
commit aeeb7533ff

View File

@ -18,11 +18,11 @@ cabal.mkDerivation (self: {
mtl pbkdf QuickCheck split testFramework testFrameworkHunit mtl pbkdf QuickCheck split testFramework testFrameworkHunit
testFrameworkQuickcheck2 text testFrameworkQuickcheck2 text
]; ];
doCheck = false;
meta = { meta = {
homepage = "http://github.com/haskoin/haskoin"; homepage = "http://github.com/haskoin/haskoin";
description = "Implementation of the Bitcoin protocol"; description = "Implementation of the Bitcoin protocol";
license = self.stdenv.lib.licenses.publicDomain; license = self.stdenv.lib.licenses.publicDomain;
# https://github.com/haskoin/haskoin/issues/109 platforms = self.ghc.meta.platforms;
platforms = [ "x86_64-linux" ];
}; };
}) })