diff options
Diffstat (limited to 'third_party/nix/src/libstore/store-api.cc')
-rw-r--r-- | third_party/nix/src/libstore/store-api.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/nix/src/libstore/store-api.cc b/third_party/nix/src/libstore/store-api.cc index 7972f5083657..0ea6b1d62c34 100644 --- a/third_party/nix/src/libstore/store-api.cc +++ b/third_party/nix/src/libstore/store-api.cc @@ -714,7 +714,8 @@ const Store::Stats& Store::getStats() { return stats; } -absl::Status Store::buildPaths(const PathSet& paths, BuildMode) { +absl::Status Store::buildPaths(std::ostream& /* log_sink */, + const PathSet& paths, BuildMode) { for (auto& path : paths) { if (isDerivation(path)) { return absl::Status(absl::StatusCode::kUnimplemented, |