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
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;
};
})