From ea0736d8efcc33032ebd311e87f63dbd2f6437ec Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 21 Jan 2018 01:41:57 +0200 Subject: [PATCH] mono: Disable on aarch64 mono40: https://hydra.nixos.org/build/67660031 mono44: https://hydra.nixos.org/build/67666036 mono50: https://hydra.nixos.org/build/67825397 mono54: https://hydra.nixos.org/build/67825452 --- pkgs/development/compilers/mono/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix index 51e39593fe1..a8012f6bb9e 100644 --- a/pkgs/development/compilers/mono/generic.nix +++ b/pkgs/development/compilers/mono/generic.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { meta = { homepage = http://mono-project.com/; description = "Cross platform, open source .NET development framework"; - platforms = with stdenv.lib.platforms; darwin ++ linux; + platforms = with stdenv.lib.platforms; allBut [ "aarch64-linux" ]; maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz vrthra ]; license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ? };