summary refs log tree commit diff
path: root/pkgs/development/interpreters/erlang
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-11-18 12:45:54 +0100
committerTimo Kaufmann <timokau@zoho.com>2018-11-18 12:45:54 +0100
commit73d83ba7a81c69d461ba7800ef89f0cdb875dafd (patch)
tree05ca87fd61d224d97413a673b97917f908239d97 /pkgs/development/interpreters/erlang
parent2d96b9a2942d2ba31756ab4142daeabc879d8d5d (diff)
downloadnixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.tar
nixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.tar.gz
nixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.tar.bz2
nixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.tar.lz
nixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.tar.xz
nixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.tar.zst
nixpkgs-73d83ba7a81c69d461ba7800ef89f0cdb875dafd.zip
erlang: remove aarch64 from platforms
The build is failing.
Diffstat (limited to 'pkgs/development/interpreters/erlang')
-rw-r--r--pkgs/development/interpreters/erlang/generic-builder.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/erlang/generic-builder.nix b/pkgs/development/interpreters/erlang/generic-builder.nix
index f6ff1e0db86..0529c9f1e28 100644
--- a/pkgs/development/interpreters/erlang/generic-builder.nix
+++ b/pkgs/development/interpreters/erlang/generic-builder.nix
@@ -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);