nix-super/src/libstore/nar-accessor.hh

16 lines
307 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);
2017-11-14 15:23:53 +02:00
class JSONPlaceholder;
void listNar(JSONPlaceholder & res, ref<FSAccessor> accessor, const Path & path);
}