11 stdenv.mkDerivation rec {
13 version = "unstable-2023-07-08";
15 src = fetchFromGitHub {
18 rev = "fa86fddbd000316772d1deb5a8d1201fa7599ef7";
19 hash = "sha256-pmqZYFREPgSrWPekymTglhtAv6gQR1gP3dOl3hqjYig=";
22 nativeBuildInputs = [ autoreconfHook pkg-config ];
24 buildInputs = [ protobuf zlib ];
26 env.PROTOC = lib.getExe buildPackages.protobuf;
29 homepage = "https://github.com/protobuf-c/protobuf-c/";
30 description = "C bindings for Google's Protocol Buffers";
31 license = licenses.bsd2;
32 platforms = platforms.all;
33 maintainers = with maintainers; [ nickcao ];