nix-env: Support ‘--repair’ flag

This commit is contained in:
Eelco Dolstra 2012-10-03 15:35:42 -04:00
parent 2e90a5a2a7
commit 2bbc4a214e
3 changed files with 9 additions and 5 deletions

View file

@ -45,7 +45,7 @@ bool createUserEnv(EvalState & state, DrvInfos & elems,
drvsToBuild.insert(i->queryDrvPath(state));
debug(format("building user environment dependencies"));
store->buildPaths(drvsToBuild);
store->buildPaths(drvsToBuild, state.repair);
/* Construct the whole top level derivation. */
PathSet references;
@ -132,7 +132,7 @@ bool createUserEnv(EvalState & state, DrvInfos & elems,
/* Realise the resulting store expression. */
debug("building user environment");
store->buildPaths(singleton<PathSet>(topLevelDrv.queryDrvPath(state)));
store->buildPaths(singleton<PathSet>(topLevelDrv.queryDrvPath(state)), state.repair);
/* Switch the current user environment to the output path. */
PathLocks lock;