diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-07-10 09:59:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 09:59:01 -0400 |
commit | 4a880c3cc085841a1537040405bc142fefffd7ff (patch) | |
tree | 0b7cea0077b0db53631879b95c3df75ced916f7a /src/libexpr/primops.cc | |
parent | fea7d3b1cd49679c0fe582e14bbb70fa995da962 (diff) | |
parent | be518e73ae331ac2f46e6b3a0ffdfeead26e3186 (diff) |
Merge pull request #8579 from obsidiansystems/findPath-cleanup-2
Further search path cleanups
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index f4bdf8fc6..8a61e57cc 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -1658,9 +1658,9 @@ static void prim_findFile(EvalState & state, const PosIdx pos, Value * * args, V })); } - searchPath.emplace_back(SearchPathElem { - .prefix = prefix, - .path = path, + searchPath.elements.emplace_back(SearchPath::Elem { + .prefix = SearchPath::Prefix { .s = prefix }, + .path = SearchPath::Path { .s = path }, }); } @@ -4321,12 +4321,12 @@ void EvalState::createBaseEnv() }); /* Add a value containing the current Nix expression search path. */ - mkList(v, searchPath.size()); + mkList(v, searchPath.elements.size()); int n = 0; - for (auto & i : searchPath) { + for (auto & i : searchPath.elements) { auto attrs = buildBindings(2); - attrs.alloc("path").mkString(i.path); - attrs.alloc("prefix").mkString(i.prefix); + attrs.alloc("path").mkString(i.path.s); + attrs.alloc("prefix").mkString(i.prefix.s); (v.listElems()[n++] = allocValue())->mkAttrs(attrs); } addConstant("__nixPath", v, { |