1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-12 20:11:03 +01:00

Tarball fetcher: Fix fetchToStore() and eval caching

This commit is contained in:
Eelco Dolstra 2024-07-03 16:28:24 +02:00
parent a713476790
commit 9d95c228ee
2 changed files with 11 additions and 0 deletions

View file

@ -260,6 +260,7 @@ std::pair<ref<SourceAccessor>, Input> Input::getAccessorUnchecked(ref<Store> sto
auto [accessor, final] = scheme->getAccessor(store, *this);
assert(!accessor->fingerprint);
accessor->fingerprint = scheme->getFingerprint(store, final);
return {accessor, std::move(final)};