tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pybind11-protobuf: unbreak
PhiliPdB
10 months ago
b5cc0da7
0fc62b07
+3
-3
2 changed files
expand all
collapse all
unified
split
pkgs
by-name
or
or-tools
package.nix
development
python-modules
pybind11-protobuf
default.nix
+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
31
-
pybind11-protobuf = python3.pkgs.pybind11-protobuf.override { inherit protobuf; };
31
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
8
-
protobuf,
8
8
+
protobuf_29,
9
9
pybind11,
10
10
zlib,
11
11
}:
···
32
32
33
33
buildInputs = [
34
34
abseil-cpp
35
35
-
protobuf
35
35
+
protobuf_29
36
36
pybind11
37
37
zlib
38
38
];