emacsPackages: fix for missing passthru

This commit is contained in:
Taeer Bar-Yam 2021-08-09 09:34:27 -04:00
parent bd9fd9c2d9
commit dc79d3b0da
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ in makeScope pkgs'.newScope (self: makeOverridable ({
# Propagate overriden scope
emacs = emacs'.overrideAttrs(old: {
passthru = old.passthru // {
passthru = (old.passthru or {}) // {
pkgs = dontRecurseIntoAttrs self;
};
});