···386 inherit withTreeSitter;
387 pkgs = recurseIntoAttrs (emacsPackagesFor finalAttrs.finalPackage);
388 tests = { inherit (nixosTests) emacs-daemon; };
389+ # Backwards compatibility aliases. Remove this at some point before 23.11 release cut-off.
390+ nativeComp = builtins.trace "emacs.passthru: nativeComp was renamed to withNativeCompilation and will be removed in 23.11" withNativeCompilation;
391+ treeSitter = builtins.trace "emacs.passthru: treeSitter was renamed to withTreeSitter and will be removed in 23.11" withTreeSitter;
392 };
393394 meta = {
···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
···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