Restore RestrictedStore.addToStoreFromDump implementation

It was accidentally removed in commit ca30abb3fb
This commit is contained in:
Robert Hensing 2020-10-31 23:52:09 +01:00
parent dc5696b84f
commit e8a45d07bc

View file

@ -2074,6 +2074,14 @@ struct RestrictedStore : public LocalFSStore, public virtual RestrictedStoreConf
return path;
}
StorePath addToStoreFromDump(Source & dump, const string & name,
FileIngestionMethod method = FileIngestionMethod::Recursive, HashType hashAlgo = htSHA256, RepairFlag repair = NoRepair) override
{
auto path = next->addToStoreFromDump(dump, name, method, hashAlgo, repair);
goal.addDependency(path);
return path;
}
void narFromPath(const StorePath & path, Sink & sink) override
{
if (!goal.isAllowed(path))