lix/src/libstore/nar-accessor.hh

12 lines
200 B
C++
Raw Normal View History

#pragma once
#include "fs-accessor.hh"
namespace nix {
/* Return an object that provides access to the contents of a NAR
file. */
ref<FSAccessor> makeNarAccessor(ref<const std::string> nar);
}