diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:13:33 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:13:33 +0100 |
commit | bc34274aae277bb5b05d3e833fbdc0bd30c7250a (patch) | |
tree | 0efc8d4cbd8c38ca4608111eb7b16e6631d3bb17 /src/libstore/store-api.cc | |
parent | fa03f239239e516a3585f9323d0eff7787fc999f (diff) |
Merge pull request #9588 from obsidiansystems/queryDerivationOutputMap-evalStore
Give `Store::queryDerivationOutputMap` and `evalStore` argument
(cherry picked from commit 8cddda4f892cb42be43e9bd87aa0111572617e78)
Change-Id: I394e7e11c3f2e0cd3dbe0f48d757c14c09835e44
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r-- | src/libstore/store-api.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 2851133d4..484a0ca6e 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -539,8 +539,8 @@ std::map<std::string, std::optional<StorePath>> Store::queryPartialDerivationOut return outputs; } -OutputPathMap Store::queryDerivationOutputMap(const StorePath & path) { - auto resp = queryPartialDerivationOutputMap(path); +OutputPathMap Store::queryDerivationOutputMap(const StorePath & path, Store * evalStore) { + auto resp = queryPartialDerivationOutputMap(path, evalStore); OutputPathMap result; for (auto & [outName, optOutPath] : resp) { if (!optOutPath) |