about summary refs log tree commit diff
path: root/tvix/proto/default.nix
blob: 0ee102e4f958cbbdb3d5e882a1f03b09d2a4818d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Target containing just the proto files used in tvix

{ depot, lib, ... }:

depot.nix.sparseTree {
  name = "tvix-protos";
  root = depot.path.origSrc;
  paths = [
    ../castore/protos/castore.proto
    ../castore/protos/rpc_blobstore.proto
    ../castore/protos/rpc_directory.proto
    ../store/protos/pathinfo.proto
    ../store/protos/rpc_pathinfo.proto
  ];
}