1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libstore/nar-accessor.hh

19 lines
411 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 08:23:53 -05:00
class JSONPlaceholder;
2017-11-14 08:31:28 -05: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 08:23:53 -05:00
}