diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-07-21 08:53:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 08:53:18 -0400 |
commit | fe1fbdb5a14a059763fcc7434f2cd1e483dc00e6 (patch) | |
tree | 74b640a70e98095ac912c9fa822737b90e88ec71 /src/libstore/local-store.hh | |
parent | 7ac24d952545637b6af2d60852bdd2750621b504 (diff) | |
parent | 6bc98c7fba9f783414692fcef41d90ed80928b6c (diff) |
Merge pull request #8724 from obsidiansystems/queryPartialDerivationOutputMap-evalStore
Give `queryPartialDerivationOutputMap` an `evalStore` parameter
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index d76662f33..2bdd46fa2 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -165,7 +165,7 @@ public: StorePathSet queryValidDerivers(const StorePath & path) override; - std::map<std::string, std::optional<StorePath>> queryPartialDerivationOutputMap(const StorePath & path) override; + std::map<std::string, std::optional<StorePath>> queryStaticPartialDerivationOutputMap(const StorePath & path) override; std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override; |