2023-10-17 14:42:58 +02:00
|
|
|
{ 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
|
2023-12-09 14:23:29 +01:00
|
|
|
buf format -d --exit-code
|
2023-10-17 14:42:58 +02:00
|
|
|
buf generate
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
cp tvix/store/protos/*.pb.go $out/
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|