1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 11:43:15 +02:00

Provide a default Input::fetch() that uses lazyFetch()

This commit is contained in:
Eelco Dolstra 2022-05-18 23:24:05 +02:00
parent df713a5d25
commit c80b942c6e
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 21 additions and 7 deletions

View file

@ -134,7 +134,9 @@ struct GitArchiveInputScheme : InputScheme
bool hasAllInfo(const Input & input) override
{
return input.getRev() && maybeGetIntAttr(input.attrs, "lastModified");
return input.getRev() &&
true; // FIXME
//maybeGetIntAttr(input.attrs, "lastModified");
}
Input applyOverrides(
@ -224,11 +226,6 @@ struct GitArchiveInputScheme : InputScheme
return {res.storePath, input};
}
std::pair<StorePath, Input> fetch(ref<Store> store, const Input & _input) override
{
throw UnimplementedError("GitArchive::fetch()");
}
std::pair<ref<InputAccessor>, Input> lazyFetch(ref<Store> store, const Input & input) override
{
auto [storePath, input2] = downloadArchive(store, input);