mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
Merge pull request #47353 from orivej/protobuf
protobuf: default to 3.6
This commit is contained in:
commit
39f86379c6
|
@ -11648,7 +11648,7 @@ with pkgs;
|
|||
|
||||
postgis = callPackage ../development/libraries/postgis { };
|
||||
|
||||
protobuf = protobuf3_4;
|
||||
protobuf = protobuf3_6;
|
||||
|
||||
protobuf3_6 = callPackage ../development/libraries/protobuf/3.6.nix { };
|
||||
protobuf3_5 = callPackage ../development/libraries/protobuf/3.5.nix { };
|
||||
|
@ -20164,7 +20164,9 @@ with pkgs;
|
|||
|
||||
pong3d = callPackage ../games/pong3d { };
|
||||
|
||||
pokerth = callPackage ../games/pokerth { };
|
||||
pokerth = callPackage ../games/pokerth {
|
||||
protobuf = protobuf3_4;
|
||||
};
|
||||
|
||||
pokerth-server = pokerth.server;
|
||||
|
||||
|
|
|
@ -1123,7 +1123,7 @@ in {
|
|||
};
|
||||
|
||||
blessed = callPackage ../development/python-modules/blessed {};
|
||||
|
||||
|
||||
block-io = callPackage ../development/python-modules/block-io {};
|
||||
|
||||
# Build boost for this specific Python version
|
||||
|
@ -9725,7 +9725,7 @@ in {
|
|||
protobuf = callPackage ../development/python-modules/protobuf {
|
||||
disabled = isPyPy;
|
||||
doCheck = !isPy3k;
|
||||
protobuf = pkgs.protobuf3_5;
|
||||
protobuf = pkgs.protobuf;
|
||||
};
|
||||
|
||||
protobuf3_1 = callPackage ../development/python-modules/protobuf {
|
||||
|
|
Loading…
Reference in a new issue