erlang: remove aarch64 from platforms

The build is failing.
This commit is contained in:
Timo Kaufmann 2018-11-18 12:45:54 +01:00
parent 2d96b9a294
commit 73d83ba7a8

View file

@ -120,7 +120,8 @@ in stdenv.mkDerivation ({
tolerance.
'';
platforms = platforms.unix;
# aarch64 is supposed to work but started failing in https://hydra.nixos.org/build/83735973
platforms = subtractLists [ "aarch64-linux" ] platforms.unix;
maintainers = with maintainers; [ the-kenny sjmackenzie couchemar gleber ];
license = licenses.asl20;
} // meta);