blob: 26673cdf747f97dfbe7c042d169a5e726b6b2a60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# Build protocol buffer definitions to ensure that protos are valid in
# CI. Note that the output of this build target is not actually used
# anywhere, it just functions as a CI check for now.
{ pkgs, ... }:
pkgs.runCommand "tvix-cc-proto" { } ''
mkdir $out
${pkgs.protobuf}/bin/protoc -I ${./.} castore.proto --cpp_out=$out
${pkgs.protobuf}/bin/protoc -I ${./.} evaluator.proto --cpp_out=$out
''
|