protobuf: ensure matching version in buildPackages (#206564)
Co-authored-by: digital <git-voopaipa@dinid.net>
This commit is contained in:
parent
77822a6afa
commit
9956f66315
1 changed files with 5 additions and 1 deletions
|
@ -22152,7 +22152,11 @@ with pkgs;
|
||||||
prospector = callPackage ../development/tools/prospector { };
|
prospector = callPackage ../development/tools/prospector { };
|
||||||
|
|
||||||
# https://github.com/protocolbuffers/protobuf/issues/10418
|
# 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;
|
||||||
|
|
||||||
protobuf3_21 = callPackage ../development/libraries/protobuf/3.21.nix { };
|
protobuf3_21 = callPackage ../development/libraries/protobuf/3.21.nix { };
|
||||||
|
|
Loading…
Reference in a new issue