diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T17·44+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T17·44+0100 |
commit | ec5b04862ba48e6d7e61c8bf730ae37d48b6f70a (patch) | |
tree | b904eb55d71ee13ebdee6cab728fae69bd474b79 /src/libstore/binary-cache-store.hh | |
parent | d6dbda7004fda4af1fc89c5c947b4d1595a8c436 (diff) |
nix sign-paths: Support binary caches
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r-- | src/libstore/binary-cache-store.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index d3b0e0bd9332..8492ff600eba 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -59,6 +59,8 @@ private: std::string narInfoFileFor(const Path & storePath); + void writeNarInfo(ref<NarInfo> narInfo); + public: bool isValidPathUncached(const Path & path) override; @@ -119,8 +121,7 @@ public: ref<FSAccessor> getFSAccessor() override; - void addSignatures(const Path & storePath, const StringSet & sigs) override - { unsupported(); } + void addSignatures(const Path & storePath, const StringSet & sigs) override; std::shared_ptr<std::string> getBuildLog(const Path & path) override; |