mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
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:
parent
4f68299096
commit
482974075f
1 changed files with 7 additions and 1 deletions
|
|
@ -89,7 +89,13 @@ let
|
||||||
|
|
||||||
emacsGit = mkGitEmacs "emacs-git" ./repos/emacs/emacs-master.json { };
|
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 { };
|
emacsPgtk = mkPgtkEmacs "emacs-pgtk" ./repos/emacs/emacs-feature_pgtk.json { };
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue