{ packageOverrides = pkgs: rec { foo = pkgs.foo.override { ... }; }; }
Why is rec
needed here, and not in the example under 2.6.1?
Based on what I saw with other examples, rec
is usually included when a_package.override
is used inside packageOverrides
. But why?