From a8ea016dd8b38a3f9fecfe815b228f3850b56722 Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 2 Sep 2025 18:47:37 +0100 Subject: [PATCH] emacs-macport: fix build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I don’t love how this is separated from the actual declaration of the source, but it seems to be what we have to do. Fixes: 4a2ad8134b8b40f198c71f7d8d84467d250cd714 --- pkgs/applications/editors/emacs/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs/default.nix b/pkgs/applications/editors/emacs/default.nix index 1ac714c15575..24f722bf37b1 100644 --- a/pkgs/applications/editors/emacs/default.nix +++ b/pkgs/applications/editors/emacs/default.nix @@ -31,6 +31,11 @@ lib.makeScope pkgs.newScope ( withPgtk = true; }; - emacs29-macport = callPackage (self.sources.emacs29-macport) inheritedArgs; + emacs29-macport = callPackage (self.sources.emacs29-macport) ( + inheritedArgs + // { + srcRepo = true; + } + ); } )