nix-super/src/libfetchers/store-path-accessor.hh

17 lines
242 B
C++
Raw Normal View History

#pragma once
#include "source-path.hh"
namespace nix {
class StorePath;
class Store;
ref<SourceAccessor> makeStorePathAccessor(
ref<Store> store,
const StorePath & storePath);
SourcePath getUnfilteredRootPath(CanonPath path);
}