···6161, wrapGAppsHook
62626363# Boolean flags
6464-, nativeComp ? null
6565-, withNativeCompilation ?
6666- if nativeComp != null
6767- then lib.warn "nativeComp option is deprecated and will be removed; use withNativeCompilation instead" nativeComp
6868- else stdenv.buildPlatform.canExecute stdenv.hostPlatform
6464+, withNativeCompilation ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
6965, noGui ? false
7066, srcRepo ? true
7167, withAcl ? false
···403399 inherit withTreeSitter;
404400 pkgs = recurseIntoAttrs (emacsPackagesFor finalAttrs.finalPackage);
405401 tests = { inherit (nixosTests) emacs-daemon; };
406406- # Backwards compatibility aliases. Remove this at some point before 23.11 release cut-off.
407407- nativeComp = builtins.trace "emacs.passthru: nativeComp was renamed to withNativeCompilation and will be removed in 23.11" withNativeCompilation;
408408- treeSitter = builtins.trace "emacs.passthru: treeSitter was renamed to withTreeSitter and will be removed in 23.11" withTreeSitter;
409402 };
410403411404 meta = meta // {
+2-2
pkgs/build-support/emacs/wrapper.nix
···3636self:
3737let
3838 inherit (self) emacs;
3939- withNativeCompilation = emacs.withNativeCompilation or emacs.nativeComp or false;
4040- withTreeSitter = emacs.withTreeSitter or emacs.treeSitter or false;
3939+ withNativeCompilation = emacs.withNativeCompilation or false;
4040+ withTreeSitter = emacs.withTreeSitter or false;
4141in
4242packagesFun: # packages explicitly requested by the user
4343let