From 104992f3cf43dd4060c14650cc4d1b491a384db5 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 13 Jun 2023 04:20:00 +0000 Subject: [PATCH] emacs: disable withXwidgets on darwin withXwidgets requires webkitgtk, which is marked as broken on Darwin. --- pkgs/applications/editors/emacs/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs/generic.nix b/pkgs/applications/editors/emacs/generic.nix index 4a981930e549..30da08920a8f 100644 --- a/pkgs/applications/editors/emacs/generic.nix +++ b/pkgs/applications/editors/emacs/generic.nix @@ -98,7 +98,7 @@ , withWebP ? lib.versionAtLeast version "29" , withX ? !(stdenv.isDarwin || noGui || withPgtk) , withXinput2 ? withX && lib.versionAtLeast version "29" -, withXwidgets ? !noGui && (withGTK3 || withPgtk) +, withXwidgets ? !stdenv.isDarwin && !noGui && (withGTK3 || withPgtk) # Options , siteStart ? ./site-start.el