From bd9bca4c01a587a540e7122baeac69f1c7b10ac3 Mon Sep 17 00:00:00 2001 From: Uli Baum Date: Tue, 21 Aug 2018 20:38:09 +0200 Subject: [PATCH] mono5: mark 5.x broken on aarch64 5.x has been broken on hydra since 2017-07-06 --- pkgs/development/compilers/mono/generic-cmake.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/mono/generic-cmake.nix b/pkgs/development/compilers/mono/generic-cmake.nix index 57d5fc0c83b7..9665f5006ede 100644 --- a/pkgs/development/compilers/mono/generic-cmake.nix +++ b/pkgs/development/compilers/mono/generic-cmake.nix @@ -80,11 +80,13 @@ stdenv.mkDerivation rec { inherit enableParallelBuilding; - meta = { + meta = with stdenv.lib; { homepage = http://mono-project.com/; description = "Cross platform, open source .NET development framework"; - platforms = with stdenv.lib.platforms; darwin ++ linux; - maintainers = with stdenv.lib.maintainers; [ thoughtpolice obadz vrthra ]; - license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ? + platforms = with platforms; darwin ++ linux; + maintainers = with maintainers; [ thoughtpolice obadz vrthra ]; + license = licenses.free; # Combination of LGPL/X11/GPL ? + # 2018-08-21: mono 5.x is broken on aarch64 since at least 2017-07-06 + broken = stdenv.isAarch64 && (versionAtLeast version "5"); }; }