diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-16T02·42-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-16T21·41+0000 |
commit | cf6c48ef4734a699bf6674013635a9ff57232dbe (patch) | |
tree | 1b2d9a093732eb6a970d8265f5584f0846bdf188 /third_party/nix | |
parent | c3e96bcfa234dcf635d4875d1d2f887667489980 (diff) |
feat(3p/nix): Add NarFromPath r/1334
What it does I will never know. It takes a path and returns a path. Something happens in the middle. Change-Id: I499a9df700e5b954c9aaf6d694753ff34e773dfd Reviewed-on: https://cl.tvl.fyi/c/depot/+/1210 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'third_party/nix')
-rw-r--r-- | third_party/nix/src/proto/worker.proto | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/nix/src/proto/worker.proto b/third_party/nix/src/proto/worker.proto index f5bd59f8cc39..bfcc86b0bb54 100644 --- a/third_party/nix/src/proto/worker.proto +++ b/third_party/nix/src/proto/worker.proto @@ -93,6 +93,9 @@ service Worker { // Add signatures to the specified store path. The signatures are not // verified. rpc AddSignatures(Signatures) returns (google.protobuf.Empty); + + // TODO: What does this do? + rpc NarFromPath(StorePath) returns (StorePath); } enum HashType { |