protobufc: unpin protobuf version

It was pinned in #344671 while 1.5.0 was broken for newer protobuf, but
new versions were already fixed.
This commit is contained in:
Artem Leshchev
2025-12-30 08:57:44 -06:00
parent 8bf2b05023
commit 1390753301
+3 -3
View File
@@ -4,7 +4,7 @@
fetchFromGitHub,
autoreconfHook,
pkg-config,
protobuf_25,
protobuf,
zlib,
buildPackages,
}:
@@ -32,11 +32,11 @@ stdenv.mkDerivation rec {
];
buildInputs = [
protobuf_25
protobuf
zlib
];
env.PROTOC = lib.getExe buildPackages.protobuf_25;
env.PROTOC = lib.getExe buildPackages.protobuf;
meta = {
homepage = "https://github.com/protobuf-c/protobuf-c/";