haka: restrict to x86 linux platforms

aarch64 Hydra build has always been failing
This commit is contained in:
Renaud 2019-11-16 16:08:22 +01:00 committed by GitHub
parent 26a4ff8370
commit 5a8ecec12b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,6 @@ stdenv.mkDerivation {
homepage = http://www.haka-security.org/;
license = stdenv.lib.licenses.mpl20;
maintainers = [ stdenv.lib.maintainers.tvestelind ];
platforms = stdenv.lib.platforms.linux;
platforms = [ "x86_64-linux" "i686-linux" ]; # fails on aarch64
};
}