haskell-haskoin: only build on x86_64 Linux

https://github.com/haskoin/haskoin/issues/109
This commit is contained in:
Mateusz Kowalczyk 2014-09-21 21:17:24 +01:00
parent 533e0db424
commit ea5be72b39
1 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ cabal.mkDerivation (self: {
homepage = "http://github.com/haskoin/haskoin";
description = "Implementation of the Bitcoin protocol";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
# https://github.com/haskoin/haskoin/issues/109
platforms = [ "x86_64-linux" ];
};
})