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