pkgs/top-level: fix selfExpr nixpkgsPath argument
This commit is contained in:
parent
10b718fff3
commit
89b9624031
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ let
|
||||||
|
|
||||||
options = (builtins.removeAttrs args attrsToRemove) // {
|
options = (builtins.removeAttrs args attrsToRemove) // {
|
||||||
overlays = (args.overlays or []) ++ [
|
overlays = (args.overlays or []) ++ [
|
||||||
( import ../overlays/selfExpr.nix { nixpkgsPath = ./impure.nix; } )
|
# ../.. should be nix store path that represents self in outputs.nix that is gc-rooted by this point
|
||||||
|
( import ../overlays/selfExpr.nix { nixpkgsPath = "${builtins.toString ../..}/pkgs/top-level/impure.nix"; } )
|
||||||
( import ../overlays/unstable.nix )
|
( import ../overlays/unstable.nix )
|
||||||
( import ../overlays/version-info-fixup.nix { inherit inputs; } )
|
( import ../overlays/version-info-fixup.nix { inherit inputs; } )
|
||||||
( import "${inputs.nixpkgs}/pkgs/top-level/by-name-overlay.nix" ../by-name )
|
( import "${inputs.nixpkgs}/pkgs/top-level/by-name-overlay.nix" ../by-name )
|
||||||
|
|
Loading…
Reference in a new issue