mirror of
https://github.com/NixOS/nix
synced 2025-07-02 09:21:47 +02:00
After the removal of the InputAccessor::fetchToStore() method, the only remaining functionality in InputAccessor was `fingerprint` and `getLastModified()`, and there is no reason to keep those in a separate class.
9 lines
160 B
C++
9 lines
160 B
C++
#pragma once
|
|
|
|
#include "source-accessor.hh"
|
|
|
|
namespace nix {
|
|
|
|
ref<SourceAccessor> makeMountedInputAccessor(std::map<CanonPath, ref<SourceAccessor>> mounts);
|
|
|
|
}
|