about summary refs log tree commit diff
path: root/src/libstore/nar-accessor.hh
blob: 7699cbbb587db81361331cd5fd3f54f0b93de038 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);

class JSONPlaceholder;

void listNar(JSONPlaceholder & res, ref<FSAccessor> accessor, const Path & path);

}