lol

python3Packages.pybind11-protobuf: unbreak

PhiliPdB b5cc0da7 0fc62b07

+3 -3
+1 -1
pkgs/by-name/or/or-tools/package.nix
··· 28 28 abseil-cpp = abseil-cpp_202407; 29 29 protobuf = protobuf_29.override { inherit abseil-cpp; }; 30 30 python-protobuf = python3.pkgs.protobuf5.override { inherit protobuf; }; 31 - pybind11-protobuf = python3.pkgs.pybind11-protobuf.override { inherit protobuf; }; 31 + pybind11-protobuf = python3.pkgs.pybind11-protobuf.override { protobuf_29 = protobuf; }; 32 32 33 33 in 34 34 stdenv.mkDerivation (finalAttrs: {
+2 -2
pkgs/development/python-modules/pybind11-protobuf/default.nix
··· 5 5 fetchFromGitHub, 6 6 cmake, 7 7 abseil-cpp, 8 - protobuf, 8 + protobuf_29, 9 9 pybind11, 10 10 zlib, 11 11 }: ··· 32 32 33 33 buildInputs = [ 34 34 abseil-cpp 35 - protobuf 35 + protobuf_29 36 36 pybind11 37 37 zlib 38 38 ];