diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-22 10:29:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 10:29:46 +0100 |
commit | e4ff4308665614202123ac9b46f2f9921ff41e47 (patch) | |
tree | 4b9898174663e7d644e4992563c4593a6eb3b9f4 /src/nix | |
parent | 7ed81701ee5da8c49f31bf0bbe3bca3645cf37bc (diff) | |
parent | 4d6a3806d24b54f06ddc0cf234ac993db028cf29 (diff) |
Merge pull request #6237 from obsidiansystems/store-path-string-context
Decode string context straight to using StorePaths
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/app.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/app.cc b/src/nix/app.cc index 30e138a96..803d028f0 100644 --- a/src/nix/app.cc +++ b/src/nix/app.cc @@ -71,7 +71,7 @@ UnresolvedApp Installable::toApp(EvalState & state) std::vector<StorePathWithOutputs> context2; for (auto & [path, name] : context) - context2.push_back({state.store->parseStorePath(path), {name}}); + context2.push_back({path, {name}}); return UnresolvedApp{App { .context = std::move(context2), |