1b26bf21e3
Similar to the castore-go CL before, this also updates the store-go bindings to the new layout. Change-Id: Id73d7ad43f7d70171ab021728e303300c5db71f0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9788 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
34 lines
741 B
Nix
34 lines
741 B
Nix
{ depot, pkgs, ... }: {
|
|
# Produces the golang bindings.
|
|
go-bindings = pkgs.stdenv.mkDerivation {
|
|
name = "go-bindings";
|
|
|
|
src = depot.nix.sparseTree {
|
|
name = "castore-protos";
|
|
root = depot.path.origSrc;
|
|
paths = [
|
|
# We need to include castore.proto (only), as it's referred.
|
|
../../castore/protos/castore.proto
|
|
./pathinfo.proto
|
|
./rpc_pathinfo.proto
|
|
../../../buf.yaml
|
|
../../../buf.gen.yaml
|
|
];
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgs.buf
|
|
pkgs.protoc-gen-go
|
|
pkgs.protoc-gen-go-grpc
|
|
];
|
|
|
|
buildPhase = ''
|
|
export HOME=$TMPDIR
|
|
buf lint
|
|
buf generate
|
|
|
|
mkdir -p $out
|
|
cp tvix/store/protos/*.pb.go $out/
|
|
'';
|
|
};
|
|
}
|