defaultCrateOverrides: add missing protobuf to crates

This commit is contained in:
Ilan Joselevich 2024-06-21 18:21:39 +03:00
parent 91cbda452b
commit b561a29e4d
No known key found for this signature in database

View File

@ -218,6 +218,10 @@ in
buildInputs = [ openssl ];
};
opentelemetry-proto = attrs: {
nativeBuildInputs = [ protobuf ];
};
pam-sys = attr: {
buildInputs = [ linux-pam ];
};
@ -236,6 +240,10 @@ in
nativeBuildInputs = [ protobuf ];
};
prost-wkt-types = attr: {
nativeBuildInputs = [ protobuf ];
};
rdkafka-sys = attr: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ rdkafka ];
@ -299,6 +307,10 @@ in
buildInputs = [ libsodium ];
};
tonic-reflection = attrs: {
nativeBuildInputs = [ protobuf ];
};
xcb = attrs: {
buildInputs = [ python3 ];
};