mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-28 08:36:15 +02:00
14 lines
233 B
C++
14 lines
233 B
C++
#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);
|
|
|
|
}
|