blob: 83c570be4c7b05f6211b86ad15774fb9c4353b8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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);
}
|