mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
Move Emacs 29's bonus-feature flags to mkGitEmacs
This commit is contained in:
parent
af086e6fc0
commit
ca91042729
1 changed files with 4 additions and 6 deletions
10
default.nix
10
default.nix
|
|
@ -40,7 +40,7 @@ let
|
||||||
super.emacs
|
super.emacs
|
||||||
[
|
[
|
||||||
|
|
||||||
(drv: drv.override ({ srcRepo = true; } // args))
|
(drv: drv.override ({ srcRepo = true; withSQLite3 = true; withWebP = true; } // args))
|
||||||
|
|
||||||
(
|
(
|
||||||
drv: drv.overrideAttrs (
|
drv: drv.overrideAttrs (
|
||||||
|
|
@ -82,19 +82,17 @@ let
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
emacsGit = mkGitEmacs "emacs-git" ./repos/emacs/emacs-master.json { withSQLite3 = true; withWebP = true; };
|
emacsGit = mkGitEmacs "emacs-git" ./repos/emacs/emacs-master.json { };
|
||||||
|
|
||||||
emacsNativeComp = super.emacsNativeComp or (mkGitEmacs "emacs-native-comp" ./repos/emacs/emacs-unstable.json { nativeComp = true; });
|
emacsNativeComp = super.emacsNativeComp or (mkGitEmacs "emacs-native-comp" ./repos/emacs/emacs-unstable.json { nativeComp = true; });
|
||||||
|
|
||||||
emacsGitNativeComp = mkGitEmacs "emacs-git-native-comp" ./repos/emacs/emacs-master.json {
|
emacsGitNativeComp = mkGitEmacs "emacs-git-native-comp" ./repos/emacs/emacs-master.json {
|
||||||
withSQLite3 = true;
|
|
||||||
withWebP = true;
|
|
||||||
nativeComp = true;
|
nativeComp = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
emacsPgtk = mkPgtkEmacs "emacs-pgtk" ./repos/emacs/emacs-master.json { withSQLite3 = true; withGTK3 = true; };
|
emacsPgtk = mkPgtkEmacs "emacs-pgtk" ./repos/emacs/emacs-master.json { withGTK3 = true; };
|
||||||
|
|
||||||
emacsPgtkNativeComp = mkPgtkEmacs "emacs-pgtk-native-comp" ./repos/emacs/emacs-master.json { nativeComp = true; withSQLite3 = true; withGTK3 = true; };
|
emacsPgtkNativeComp = mkPgtkEmacs "emacs-pgtk-native-comp" ./repos/emacs/emacs-master.json { nativeComp = true; withGTK3 = true; };
|
||||||
|
|
||||||
emacsUnstable = (mkGitEmacs "emacs-unstable" ./repos/emacs/emacs-unstable.json { });
|
emacsUnstable = (mkGitEmacs "emacs-unstable" ./repos/emacs/emacs-unstable.json { });
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue