summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-01-21 01:41:57 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-01-21 01:41:57 +0200
commitea0736d8efcc33032ebd311e87f63dbd2f6437ec (patch)
tree27ff19aeb473df973e0be276b9e61ba95e8c66a8
parente072086b71cfe8b69c6f979d9162fbead042c111 (diff)
downloadnixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.tar
nixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.tar.gz
nixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.tar.bz2
nixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.tar.lz
nixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.tar.xz
nixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.tar.zst
nixlib-ea0736d8efcc33032ebd311e87f63dbd2f6437ec.zip
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
-rw-r--r--pkgs/development/compilers/mono/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix
index 51e39593fe14..a8012f6bb9e6 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 ?
   };