emacs-macport: fix build

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: 4a2ad8134b
This commit is contained in:
Emily
2025-09-02 18:55:38 +01:00
parent 08846d0aa1
commit a8ea016dd8
+6 -1
View File
@@ -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;
}
);
}
)