From f56f67e4d5b32ecf9b81972fc7e217ccd6e7e720 Mon Sep 17 00:00:00 2001 From: Atemu Date: Fri, 14 Oct 2022 09:51:14 +0200 Subject: [PATCH] mlterm: mark as broken on aarch64-darwin --- pkgs/applications/terminal-emulators/mlterm/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index 056a24138441..a6f1ed851665 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -118,5 +118,6 @@ stdenv.mkDerivation rec { license = licenses.bsd3; maintainers = with maintainers; [ vrthra ramkromberg atemu ]; platforms = with platforms; linux ++ darwin; + broken = stdenv.system == "aarch64-darwin"; # https://github.com/arakiken/mlterm/issues/51 }; }