diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-21T16·55+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-21T16·55+0100 |
commit | 1c5f73f529d83543dc776b4de4180309bfd3b4a3 (patch) | |
tree | 3f19160e2f65893c560d04a8a99b024427b86b78 /src/libstore/binary-cache-store.hh | |
parent | 87295b9844090d76173a9f68341a4b17a7e1e7b9 (diff) |
Add Store::dumpPath() method
This allows applying nix-store --verify-path to binary cache stores: NIX_REMOTE=https://cache.nixos.org nix-store --verify-path /nix/store/s5c7...
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r-- | src/libstore/binary-cache-store.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index c99556f33692..f14b4859b04e 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -124,6 +124,8 @@ public: Path addTextToStore(const string & name, const string & s, const PathSet & references, bool repair = false) override; + void dumpPath(const Path & path, Sink & sink) override; + void exportPath(const Path & path, bool sign, Sink & sink) override; Paths importPaths(bool requireSignature, Source & source, |