haskellPackages.half: disable test suite on aarch64

This commit is contained in:
Domen Kožar 2021-01-09 06:45:31 +01:00
parent d1f716c6b4
commit 163cda6c0b
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246

View file

@ -1503,6 +1503,11 @@ self: super: {
sha256 = "0g2m0y46zr3xs9fswkm4h9adhsg6gzl5zwgidshsjh3k3rq4h7b1";
});
# https://github.com/ekmett/half/issues/35
half = if pkgs.stdenv.isAarch64
then dontCheck super.half
else super.half;
# 2020-11-19: Jailbreaking until: https://github.com/snapframework/heist/pull/124
heist = doJailbreak super.heist;