Nix/src/libfetchers/mounted-input-accessor.hh
2023-11-14 14:02:57 +01:00

10 lines
157 B
C++

#pragma once
#include "input-accessor.hh"
namespace nix {
ref<InputAccessor> makeMountedInputAccessor(std::map<CanonPath, ref<InputAccessor>> mounts);
}