blob: 934a73fe33a6457db65f1b816d8232f39445e0b5 (
plain) (
tree)
|
|
# Target containing just the proto files used in tvix
{ depot, lib, ... }:
depot.nix.sparseTree {
name = "tvix-protos";
root = depot.path.origSrc;
paths = [
../build/protos/build.proto
../build/protos/rpc_build.proto
../castore/protos/castore.proto
../castore/protos/rpc_blobstore.proto
../castore/protos/rpc_directory.proto
../store/protos/pathinfo.proto
../store/protos/rpc_pathinfo.proto
];
}
|