about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/syncterm
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-05-29 11:37:28 +0200
committerJanne Heß <janne@hess.ooo>2022-05-30 13:42:58 +0200
commit433701147a8a4766edd51114d186a54e19fc13cc (patch)
treedb075e7fca2700fcf2fbd05176c210a5b1fac647 /pkgs/applications/terminal-emulators/syncterm
parent010f6ee30de634c51d0c7337762dee61cb8427ea (diff)
downloadnixlib-433701147a8a4766edd51114d186a54e19fc13cc.tar
nixlib-433701147a8a4766edd51114d186a54e19fc13cc.tar.gz
nixlib-433701147a8a4766edd51114d186a54e19fc13cc.tar.bz2
nixlib-433701147a8a4766edd51114d186a54e19fc13cc.tar.lz
nixlib-433701147a8a4766edd51114d186a54e19fc13cc.tar.xz
nixlib-433701147a8a4766edd51114d186a54e19fc13cc.tar.zst
nixlib-433701147a8a4766edd51114d186a54e19fc13cc.zip
treewide: pkgs/applications: mark broken for aarch64-linux
Diffstat (limited to 'pkgs/applications/terminal-emulators/syncterm')
-rw-r--r--pkgs/applications/terminal-emulators/syncterm/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/terminal-emulators/syncterm/default.nix b/pkgs/applications/terminal-emulators/syncterm/default.nix
index d56db734a885..e2b51614633d 100644
--- a/pkgs/applications/terminal-emulators/syncterm/default.nix
+++ b/pkgs/applications/terminal-emulators/syncterm/default.nix
@@ -31,11 +31,12 @@ stdenv.mkDerivation rec {
   runtimeDependencies = [ ncurses SDL2 ]; # Both of these are dlopen()'ed at runtime.
 
   meta = with lib; {
+    # error: unsupported option '-fsanitize=safe-stack' for target 'x86_64-apple-darwin'
+    broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
     homepage = "https://syncterm.bbsdev.net/";
     description = "BBS terminal emulator";
     maintainers = with maintainers; [ embr ];
     platforms = platforms.unix;
     license = licenses.gpl2Plus;
-    broken = stdenv.isDarwin; # error: unsupported option '-fsanitize=safe-stack' for target 'x86_64-apple-darwin'
   };
 }