about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorAtemu <atemu.main@gmail.com>2023-03-03 19:43:12 +0100
committerFabián Heredia Montiel <fabianhjr@protonmail.com>2023-03-13 16:43:06 -0600
commitf8264a5b1e7832d93d8a22816f5133ff891724b6 (patch)
treebc29bf593b1f5b0a76b51c15e2f75b16b83c829a /pkgs/applications/terminal-emulators
parent9bd2506458ea053ccbcde6e622d7cec9993d8f36 (diff)
tree-wide: mark broken packages as such
Found while changing ffmpeg from 4 to 5; these all depend on ffmpeg either
directly or transitively.
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-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 e2b51614633df..59e0b3a735e08 100644
--- a/pkgs/applications/terminal-emulators/syncterm/default.nix
+++ b/pkgs/applications/terminal-emulators/syncterm/default.nix
@@ -32,7 +32,8 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     # error: unsupported option '-fsanitize=safe-stack' for target 'x86_64-apple-darwin'
-    broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
+    # broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
+    broken = true; # sendmsg.c:(.text+0x1099): undefined reference to `pthread_yield'
     homepage = "https://syncterm.bbsdev.net/";
     description = "BBS terminal emulator";
     maintainers = with maintainers; [ embr ];