protobuf: ensure matching version in buildPackages (#206564)

Co-authored-by: digital <git-voopaipa@dinid.net>
This commit is contained in:
maifel-maifel
2022-12-17 18:28:04 +01:00
committed by GitHub
co-authored by digital
parent 77822a6afa
commit 9956f66315
+5 -1
View File
@@ -22152,7 +22152,11 @@ with pkgs;
prospector = callPackage ../development/tools/prospector { };
# https://github.com/protocolbuffers/protobuf/issues/10418
protobuf = if stdenv.hostPlatform.is32bit then protobuf3_20 else
# protobuf versions have to match between build-time and run-time
# Using "targetPlatform" in the check makes sure that the version of
# pkgsCross.armv7l-hf-multiplatform.buildPackages.protobuf matches the
# version of pkgsCross.armv7l-hf-multiplatform.protobuf
protobuf = if stdenv.targetPlatform.is32bit then protobuf3_20 else
protobuf3_21;
protobuf3_21 = callPackage ../development/libraries/protobuf/3.21.nix { };