feat(overlay): only namespace package overlays
BREAKING CHANGE This commit modifies the overlay builder's original behavior in a non-backward compatible way. Previously, all overlays would be namespaced with "nixpkgs/". This was often unnecessary or would cause conflicts with package overlays if they shared a name. After this change, all overlays retain their directory name (eg. "my-overlay") and all package overlays are prefixed with "package/" to differentiate them and avoid name conflicts.
This commit is contained in:
parent
07d478036c
commit
23c08d04f9
2 changed files with 8 additions and 8 deletions
|
|
@ -118,7 +118,7 @@ in
|
|||
overlays
|
||||
else
|
||||
overlays // {
|
||||
"nixpkgs/${name}" = overlay;
|
||||
${name} = overlay;
|
||||
}
|
||||
);
|
||||
|
||||
|
|
@ -151,7 +151,7 @@ in
|
|||
in
|
||||
package-overlays //
|
||||
{
|
||||
"nixpkgs/${name}" = overlay;
|
||||
"package/${name}" = overlay;
|
||||
};
|
||||
|
||||
package-overlays =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue