diff options
author | regnat <rg@regnat.ovh> | 2021-03-08 16:43:11 +0100 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-03-15 16:35:14 +0100 |
commit | 54ced9072b94515a756e1e8e76c92a42f0ccf366 (patch) | |
tree | 9e4bd8613a73dc749b8b9f933d5ca216904e9cfe /src/libstore/local-store.hh | |
parent | 3e6017f911127555cfbed71fe4a4df8f70d08bbb (diff) |
Check the signatures when copying store paths around
Broken atm
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index c311d295a..26e034a82 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -203,6 +203,7 @@ public: /* Register the store path 'output' as the output named 'outputName' of derivation 'deriver'. */ void registerDrvOutput(const Realisation & info) override; + void registerDrvOutput(const Realisation & info, CheckSigsFlag checkSigs) override; void cacheDrvOutputMapping(State & state, const uint64_t deriver, const string & outputName, const StorePath & output); std::optional<const Realisation> queryRealisation(const DrvOutput&) override; |