about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs
diff options
context:
space:
mode:
authorBrian Leung <leungbk@posteo.net>2023-11-21 21:14:01 -0800
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-11-22 09:25:50 -0300
commitd1579a08ec46494ca6c3babca19d36c3b8513d0d (patch)
tree0bc5e4f8b3edaf82e6aa8b8800a0c90223f21c25 /pkgs/applications/editors/emacs
parent7ad2f0fbfc7fb2c6d020ec176655cd11c074966c (diff)
downloadnixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.tar
nixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.tar.gz
nixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.tar.bz2
nixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.tar.lz
nixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.tar.xz
nixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.tar.zst
nixlib-d1579a08ec46494ca6c3babca19d36c3b8513d0d.zip
emacs: remove backwards-compatibility aliases
Diffstat (limited to 'pkgs/applications/editors/emacs')
-rw-r--r--pkgs/applications/editors/emacs/make-emacs.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/pkgs/applications/editors/emacs/make-emacs.nix b/pkgs/applications/editors/emacs/make-emacs.nix
index 789420fdfc6e..5625dfbb3aa9 100644
--- a/pkgs/applications/editors/emacs/make-emacs.nix
+++ b/pkgs/applications/editors/emacs/make-emacs.nix
@@ -61,11 +61,7 @@
 , wrapGAppsHook
 
 # Boolean flags
-, nativeComp ? null
-, withNativeCompilation ?
-  if nativeComp != null
-  then lib.warn "nativeComp option is deprecated and will be removed; use withNativeCompilation instead" nativeComp
-  else stdenv.buildPlatform.canExecute stdenv.hostPlatform
+, withNativeCompilation ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
 , noGui ? false
 , srcRepo ? true
 , withAcl ? false
@@ -403,9 +399,6 @@ mkDerivation (finalAttrs: {
     inherit withTreeSitter;
     pkgs = recurseIntoAttrs (emacsPackagesFor finalAttrs.finalPackage);
     tests = { inherit (nixosTests) emacs-daemon; };
-    # Backwards compatibility aliases. Remove this at some point before 23.11 release cut-off.
-    nativeComp = builtins.trace "emacs.passthru: nativeComp was renamed to withNativeCompilation and will be removed in 23.11" withNativeCompilation;
-    treeSitter = builtins.trace "emacs.passthru: treeSitter was renamed to withTreeSitter and will be removed in 23.11" withTreeSitter;
   };
 
   meta = meta // {