mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Internalize the recursion over the set of all packages.
This commit is contained in:
parent
f8dedbb101
commit
5783f66bc8
@ -124,7 +124,9 @@ let
|
||||
stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs;
|
||||
|
||||
selfArgs = topLevelArguments // { inherit pkgsWithOverrides; };
|
||||
self = (import ./all-packages.nix selfArgs) self pkgs;
|
||||
self =
|
||||
let res = import ./all-packages.nix selfArgs res pkgs;
|
||||
in res;
|
||||
|
||||
aliases = super: import ./aliases.nix super;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user