diff options
author | Vincent Ambo <mail@tazj.in> | 2021-11-23T11·39+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-11-23T12·02+0000 |
commit | a2be05faa4043c225581090846c52718812fac8f (patch) | |
tree | ceecaa0075208a4b026866f8b2700b907469a9cc /default.nix | |
parent | 18c248547dd5dc0426a4a72ad90baed719f92c04 (diff) |
refactor(readTree): Move copy of 'fix' into readTree r/3084
This is often used when bootstrapping a repository with readTree, before lib is available. Having this definition in readTree is more convenient than copy&pasting it around to callsites. Change-Id: I6d5d27ed142bea704843fe289ad2674be8c4d360
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/default.nix b/default.nix index 245e76e30403..991010c5ff04 100644 --- a/default.nix +++ b/default.nix @@ -10,10 +10,6 @@ let filter ; - # This definition of fix is identical to <nixpkgs>.lib.fix, but the global - # package set is not available here. - fix = f: let x = f x; in x; - readTree = import ./nix/readTree {}; # Disallow access to //users from other depot parts. @@ -97,7 +93,7 @@ let (node.meta.targets or [])) else []; -in fix(self: (readDepot { +in readTree.fix(self: (readDepot { depot = self; # Pass third_party as 'pkgs' (for compatibility with external |