stdenv/booter.nix: Add longer note explaining indexing
This commit is contained in:
parent
ff35560460
commit
abaf790ea9
@ -46,7 +46,10 @@ stageFuns: let
|
|||||||
# isn't already set.
|
# isn't already set.
|
||||||
withAllowCustomOverrides = lib.lists.imap
|
withAllowCustomOverrides = lib.lists.imap
|
||||||
(index: stageFun: prevStage:
|
(index: stageFun: prevStage:
|
||||||
{ allowCustomOverrides = index == 1; } # first element, 1-indexed
|
# So true by default for only the first element because one
|
||||||
|
# 1-indexing. Since we reverse the list, this means this is true
|
||||||
|
# for the final stage.
|
||||||
|
{ allowCustomOverrides = index == 1; }
|
||||||
// (stageFun prevStage))
|
// (stageFun prevStage))
|
||||||
(lib.lists.reverseList stageFuns);
|
(lib.lists.reverseList stageFuns);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user