emacs: Move emacsPackages alias from aliases.nix to all-packages.nix

This alias should live in aliases.nix but that would cause Hydra not to evaluate/build the packages.

To be honest I don't particularly like this change, but it seems the
most practical way forward to get Hydra to build Emacs packages.
This commit is contained in:
adisbladis 2022-08-24 08:44:12 +08:00
parent d20c9d7a88
commit 3071f2debc
2 changed files with 3 additions and 1 deletions

View file

@ -384,7 +384,6 @@ mapAliases ({
emacs28Packages = emacs28.pkgs; # Added 2021-10-04
emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04
emacsNativeComp = emacs28NativeComp; # Added 2022-06-08
emacsPackages = emacs.pkgs; # Added 2020-12-18
emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22
emacsPackagesNg = emacs.pkgs; # Added 2019-08-07
emacsPackagesNgFor = emacsPackagesFor; # Added 2019-08-07

View file

@ -27007,6 +27007,9 @@ with pkgs;
pkgs' = pkgs; # default pkgs used for bootstrapping the emacs package set
};
# This alias should live in aliases.nix but that would cause Hydra not to evaluate/build the packages.
emacsPackages = emacs.pkgs;
inherit (gnome) empathy;
enhanced-ctorrent = callPackage ../applications/networking/enhanced-ctorrent { };