syslogng: fix build by pinning to protobuf_29

https://hydra.nixos.org/build/296045896/nixlog/2/tail
This commit is contained in:
Vladimír Čunát 2025-05-04 13:55:56 +02:00
parent a505ac8f87
commit df1d902c20
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -35,7 +35,8 @@
gperf,
withGrpc ? true,
grpc,
protobuf,
# see https://github.com/syslog-ng/syslog-ng/pull/5263
protobuf_29,
}:
let
python-deps =
@ -111,7 +112,7 @@ stdenv.mkDerivation (finalAttrs: {
rdkafka
]
++ (lib.optionals withGrpc [
protobuf
protobuf_29
grpc
]);