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