diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-08-24 15:31:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 15:31:42 +0200 |
commit | 04e74f7c8bb5589dec578dd049013d3cd2554e65 (patch) | |
tree | d4b94f39f5e575a5e169cd5bcc77146d8f9a7c7c /src/libstore/remote-store.hh | |
parent | a1e1ec3dad412783162be97f2d9a9977d913de1b (diff) | |
parent | 56d97d4b4df02e3464a2f003a90b7f6abae16722 (diff) |
Merge pull request #6612 from NixOS/parallel-nix-copy
Make nix copy parallel again
Diffstat (limited to 'src/libstore/remote-store.hh')
-rw-r--r-- | src/libstore/remote-store.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh index 8493be6fc..11d089cd2 100644 --- a/src/libstore/remote-store.hh +++ b/src/libstore/remote-store.hh @@ -88,6 +88,12 @@ public: RepairFlag repair, CheckSigsFlag checkSigs) override; + void addMultipleToStore( + PathsSource & pathsToCopy, + Activity & act, + RepairFlag repair, + CheckSigsFlag checkSigs) override; + StorePath addTextToStore( std::string_view name, std::string_view s, |