mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-04 09:57:02 +00:00
mesos: fix build by forcing protobuf 3.6
mesos really seems to want protobuf 3.3, as dictated by maven. 3.6 does seem to work though.
This commit is contained in:
parent
b246b32119
commit
a6febf3eaa
1 changed files with 1 additions and 1 deletions
|
@ -8224,7 +8224,7 @@ in
|
||||||
mesos = callPackage ../applications/networking/cluster/mesos {
|
mesos = callPackage ../applications/networking/cluster/mesos {
|
||||||
sasl = cyrus_sasl;
|
sasl = cyrus_sasl;
|
||||||
inherit (pythonPackages) python boto setuptools wrapPython;
|
inherit (pythonPackages) python boto setuptools wrapPython;
|
||||||
pythonProtobuf = pythonPackages.protobuf;
|
pythonProtobuf = pythonPackages.protobuf.override { protobuf = protobuf3_6; };
|
||||||
perf = linuxPackages.perf;
|
perf = linuxPackages.perf;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue