about summary refs log tree commit diff
path: root/tools/emacs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-03-08T23·17+0000
committerVincent Ambo <tazjin@google.com>2020-03-08T23·20+0000
commit65e533431acd89473c58386b4e30013fab835a16 (patch)
treea7ff7f8c56cd80f2368bf987a7e35a4458c0228d /tools/emacs
parent6cbcadc2e4340f18fd183eb7f84a74377861135b (diff)
refactor: emacsPackagesNg -> emacsPackages r/593
The former is now just an alias for the latter anyways.
Diffstat (limited to 'tools/emacs')
-rw-r--r--tools/emacs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/emacs/default.nix b/tools/emacs/default.nix
index 728dd5e6af..c980c678d6 100644
--- a/tools/emacs/default.nix
+++ b/tools/emacs/default.nix
@@ -10,11 +10,11 @@
 { depot, ... }:
 
 with depot;
-with third_party.emacsPackagesNg;
+with third_party.emacsPackages;
 with third_party.emacs;
 
 let
-  emacsWithPackages = (third_party.emacsPackagesNgGen third_party.emacs26).emacsWithPackages;
+  emacsWithPackages = (third_party.emacsPackagesGen third_party.emacs26).emacsWithPackages;
 
   # $PATH for binaries that need to be available to Emacs
   emacsBinPath = lib.makeBinPath [ third_party.telega ];