1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-01 06:31:00 +01:00

Use __nix_virtual__ instead of __virtual__

As suggested by @Ma27.
This commit is contained in:
Eelco Dolstra 2022-10-26 16:38:45 +02:00
parent 0402dd0298
commit 16838726a2
2 changed files with 6 additions and 6 deletions

View file

@ -14,14 +14,14 @@ void EvalState::registerAccessor(ref<InputAccessor> accessor)
inputAccessors.emplace(accessor->number, accessor);
}
static constexpr std::string_view marker = "/__virtual__/";
static constexpr std::string_view marker = "/__nix_virtual__/";
std::string EvalState::encodePath(const SourcePath & path)
{
/* For backward compatibility, return paths in the root FS
normally. Encoding any other path is not very reproducible (due
to /__virtual__/<N>) and we should depreceate it eventually. So
print a warning about use of an encoded path in
to /__nix_virtual__/<N>) and we should depreceate it
eventually. So print a warning about use of an encoded path in
decodePath(). */
return path.accessor == rootFS
? path.path.abs()