Merge pull request #133260 from Radvendii/master

emacsPackages: fix for missing passthru
This commit is contained in:
adisbladis 2021-08-09 09:27:29 -05:00 committed by GitHub
commit 2040ede9a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
};
});