73e16c1855
We can avoid depending on things outside //tvix by just using a similar util from nixpkgs. Change-Id: I9ea3e1f0a8a059ea10caaec173569ba9f316aec6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12247 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
50 lines
1,012 B
Nix
50 lines
1,012 B
Nix
{ depot, pkgs, lib, ... }:
|
|
let
|
|
protos = lib.sourceByRegex depot.path.origSrc [
|
|
"buf.yaml"
|
|
"buf.gen.yaml"
|
|
# We need to include castore.proto (only), as it's referred.
|
|
"^tvix(/castore(/protos(/castore\.proto)?)?)?$"
|
|
"^tvix(/store(/protos(/.*\.proto)?)?)?$"
|
|
];
|
|
in
|
|
depot.nix.readTree.drvTargets {
|
|
inherit protos;
|
|
|
|
# Lints and ensures formatting of the proto files.
|
|
check = pkgs.stdenv.mkDerivation {
|
|
name = "proto-check";
|
|
src = protos;
|
|
|
|
nativeBuildInputs = [
|
|
pkgs.buf
|
|
];
|
|
|
|
buildPhase = ''
|
|
export HOME=$TMPDIR
|
|
buf lint
|
|
buf format -d --exit-code
|
|
touch $out
|
|
'';
|
|
};
|
|
|
|
# Produces the golang bindings.
|
|
go-bindings = pkgs.stdenv.mkDerivation {
|
|
name = "go-bindings";
|
|
src = protos;
|
|
|
|
nativeBuildInputs = [
|
|
pkgs.buf
|
|
pkgs.protoc-gen-go
|
|
pkgs.protoc-gen-go-grpc
|
|
];
|
|
|
|
buildPhase = ''
|
|
export HOME=$TMPDIR
|
|
buf generate
|
|
|
|
mkdir -p $out
|
|
cp tvix/store/protos/*.pb.go $out/
|
|
'';
|
|
};
|
|
}
|