Unverified Commit 9956f663 authored by maifel-maifel's avatar maifel-maifel Committed by GitHub
Browse files

protobuf: ensure matching version in buildPackages (#206564)



Co-authored-by: default avatardigital <git-voopaipa@dinid.net>
parent 77822a6a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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 { };