mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 06:52:43 +01:00
Backported from the lazy-trees branch. Note that this doesn't yet use the access control features of FSInputAccessor.
11 lines
161 B
C++
11 lines
161 B
C++
#include "eval.hh"
|
|
#include "fs-input-accessor.hh"
|
|
|
|
namespace nix {
|
|
|
|
SourcePath EvalState::rootPath(CanonPath path)
|
|
{
|
|
return {rootFS, std::move(path)};
|
|
}
|
|
|
|
}
|