1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

Internalize the recursion over the set of all packages.

This commit is contained in:
Nicolas B. Pierron 2016-03-20 18:17:35 +00:00
parent f8dedbb101
commit 5783f66bc8

View file

@ -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;