Merge pull request #133260 from Radvendii/master

emacsPackages: fix for missing passthru

authored by adisbladis and committed by GitHub 2040ede9 2e5e7265

+1 -1
+1 -1
pkgs/top-level/emacs-packages.nix
··· 79 80 # Propagate overriden scope 81 emacs = emacs'.overrideAttrs(old: { 82 - passthru = old.passthru // { 83 pkgs = dontRecurseIntoAttrs self; 84 }; 85 });
··· 79 80 # Propagate overriden scope 81 emacs = emacs'.overrideAttrs(old: { 82 + passthru = (old.passthru or {}) // { 83 pkgs = dontRecurseIntoAttrs self; 84 }; 85 });