diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-12-17 14:12:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 14:12:28 +0100 |
commit | 26e189c3f8780812fd45e41c664d58e13ecd327c (patch) | |
tree | b8770e3a76b43b0e38e5b42bb94435257e34e1a8 /src/libstore/local-store.hh | |
parent | ae3c3e3bb29cce34c98320f1fce4da63436f2bc8 (diff) | |
parent | 4d458394991f3086c3c9c306d000e6c0058c4fa7 (diff) |
Merge pull request #4378 from NixOS/fix-master-build
Fix the detection of already built drv outputs
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 69559e346..877dba742 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -127,7 +127,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>> queryDerivationOutputMapNoResolve(const StorePath & path) override; std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override; |