From 0663e972a4588c2194a78670c86d900de27c25de Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 23 Jan 2018 21:41:57 +0200 Subject: [PATCH] ponyc: Not supported on aarch64 https://hydra.nixos.org/build/67722376 --- pkgs/development/compilers/ponyc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix index 89dda57f285..28f12b8ba37 100644 --- a/pkgs/development/compilers/ponyc/default.nix +++ b/pkgs/development/compilers/ponyc/default.nix @@ -86,6 +86,6 @@ stdenv.mkDerivation ( rec { homepage = http://www.ponylang.org; license = licenses.bsd2; maintainers = with maintainers; [ doublec kamilchm patternspandemic ]; - platforms = subtractLists platforms.i686 platforms.unix; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; }; })