···61, wrapGAppsHook
6263# Boolean flags
64-, nativeComp ? null
65-, withNativeCompilation ?
66- if nativeComp != null
67- then lib.warn "nativeComp option is deprecated and will be removed; use withNativeCompilation instead" nativeComp
68- else stdenv.buildPlatform.canExecute stdenv.hostPlatform
69, noGui ? false
70, srcRepo ? true
71, withAcl ? false
···403 inherit withTreeSitter;
404 pkgs = recurseIntoAttrs (emacsPackagesFor finalAttrs.finalPackage);
405 tests = { inherit (nixosTests) emacs-daemon; };
406- # Backwards compatibility aliases. Remove this at some point before 23.11 release cut-off.
407- nativeComp = builtins.trace "emacs.passthru: nativeComp was renamed to withNativeCompilation and will be removed in 23.11" withNativeCompilation;
408- treeSitter = builtins.trace "emacs.passthru: treeSitter was renamed to withTreeSitter and will be removed in 23.11" withTreeSitter;
409 };
410411 meta = meta // {
···36self:
37let
38 inherit (self) emacs;
39- withNativeCompilation = emacs.withNativeCompilation or emacs.nativeComp or false;
40- withTreeSitter = emacs.withTreeSitter or emacs.treeSitter or false;
41in
42packagesFun: # packages explicitly requested by the user
43let
···36self:
37let
38 inherit (self) emacs;
39+ withNativeCompilation = emacs.withNativeCompilation or false;
40+ withTreeSitter = emacs.withTreeSitter or false;
41in
42packagesFun: # packages explicitly requested by the user
43let