about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-04-26 10:35:58 +0200
committerGaetan Lepage <gaetan@glepage.com>2024-04-26 10:35:58 +0200
commitf7c7f5d86c9682ab95ac47592ff51681b042a01f (patch)
treea37e1ee78a50c011cda85229e9b65a369af11325
parent5767915c46c9aa6d2593d3e1ede6b08c4dffd7f4 (diff)
lapce: mark as broken on x86_64-darwin
-rw-r--r--pkgs/applications/editors/lapce/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/editors/lapce/default.nix b/pkgs/applications/editors/lapce/default.nix
index 299c5e06cbd53..e3c36b3083bc2 100644
--- a/pkgs/applications/editors/lapce/default.nix
+++ b/pkgs/applications/editors/lapce/default.nix
@@ -128,5 +128,7 @@ rustPlatform.buildRustPackage rec {
     license = with licenses; [ asl20 ];
     maintainers = with maintainers; [ elliot ];
     mainProgram = "lapce";
+    # Undefined symbols for architecture x86_64: "_NSPasteboardTypeFileURL"
+    broken = stdenv.isDarwin && stdenv.isx86_64;
   };
 }