mirror of
https://github.com/NixOS/nix.git
synced 2025-12-14 13:01:05 +01:00
Rename Buildable
This commit is contained in:
parent
9dfb97c987
commit
9b805d36ac
35 changed files with 165 additions and 162 deletions
|
|
@ -43,7 +43,7 @@ bool createUserEnv(EvalState & state, DrvInfos & elems,
|
|||
|
||||
debug(format("building user environment dependencies"));
|
||||
state.store->buildPaths(
|
||||
toBuildableReqs(drvsToBuild),
|
||||
toDerivedPaths(drvsToBuild),
|
||||
state.repair ? bmRepair : bmNormal);
|
||||
|
||||
/* Construct the whole top level derivation. */
|
||||
|
|
@ -140,7 +140,7 @@ bool createUserEnv(EvalState & state, DrvInfos & elems,
|
|||
std::vector<StorePathWithOutputs> topLevelDrvs;
|
||||
topLevelDrvs.push_back({topLevelDrv});
|
||||
state.store->buildPaths(
|
||||
toBuildableReqs(topLevelDrvs),
|
||||
toDerivedPaths(topLevelDrvs),
|
||||
state.repair ? bmRepair : bmNormal);
|
||||
|
||||
/* Switch the current user environment to the output path. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue