2016-02-25 16:43:19 +00:00
|
|
|
#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 13:23:53 +00:00
|
|
|
class JSONPlaceholder;
|
|
|
|
|
2017-11-14 13:31:28 +00:00
|
|
|
/* Write a JSON representation of the contents of a NAR (except file
|
|
|
|
contents). */
|
|
|
|
void listNar(JSONPlaceholder & res, ref<FSAccessor> accessor,
|
|
|
|
const Path & path, bool recurse);
|
2017-11-14 13:23:53 +00:00
|
|
|
|
2016-02-25 16:43:19 +00:00
|
|
|
}
|