diff options
Diffstat (limited to 'third_party/nix/src/proto/worker.proto')
-rw-r--r-- | third_party/nix/src/proto/worker.proto | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/third_party/nix/src/proto/worker.proto b/third_party/nix/src/proto/worker.proto index 3dd83d9988f7..d8d2cc8bbd2e 100644 --- a/third_party/nix/src/proto/worker.proto +++ b/third_party/nix/src/proto/worker.proto @@ -92,7 +92,7 @@ service WorkerService { // Add signatures to the specified store path. The signatures are not // verified. - rpc AddSignatures(Signatures) returns (google.protobuf.Empty); + rpc AddSignatures(AddSignaturesRequest) returns (google.protobuf.Empty); // TODO: What does this do? rpc NarFromPath(StorePath) returns (StorePath); @@ -314,6 +314,11 @@ message BuildDerivationResponse { string error_message = 2; } +message AddSignaturesRequest { + StorePath path = 1; + Signatures sigs = 2; +} + message AddToStoreNarRequest { oneof add_oneoff { PathInfo path_info = 1; |