Bump Nix version

This commit is contained in:
Shea Levy
2021-03-10 12:42:19 -05:00
parent b9fb66401b
commit 930f05c38e
3 changed files with 14 additions and 9 deletions

View File

@ -500,7 +500,9 @@ Step::ptr State::createStep(ref<Store> destStore,
// FIXME: should copy directly from substituter to destStore.
}
copyClosure(ref<Store>(localStore), destStore, {*path});
StorePathSet closure;
localStore->computeFSClosure({*path}, closure);
copyPaths(ref<Store>(localStore), destStore, closure, NoRepair, CheckSigs, NoSubstitute);
time_t stopTime = time(0);