emacsGcc: Use the unstable emacs release for native compilation

This should result in much better binary cache hits since it updates much less frequently than the git master counterpart.
This commit is contained in:
adisbladis 2021-12-08 11:35:31 -08:00
parent 4f68299096
commit 482974075f

View file

@ -89,7 +89,13 @@ let
emacsGit = mkGitEmacs "emacs-git" ./repos/emacs/emacs-master.json { };
emacsGcc = mkGitEmacs "emacs-gcc" ./repos/emacs/emacs-master.json { nativeComp = true; };
emacsGcc = (mkGitEmacs "emacs-gcc" ./repos/emacs/emacs-unstable.json { nativeComp = true; }).overrideAttrs (
old: {
patches = [
./patches/tramp-detect-wrapped-gvfsd-28.patch
];
}
);
emacsPgtk = mkPgtkEmacs "emacs-pgtk" ./repos/emacs/emacs-feature_pgtk.json { };