summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-09-25 04:01:30 +0000
committerOrivej Desh <orivej@gmx.fr>2018-09-25 17:45:35 +0000
commit42df4e6686b6a854a08cabc3a7b3a49ea4d96d77 (patch)
tree87e3fc88fc06fd234c1cd607357023c7a781fd36
parent9eb751496ca8bf1cb6b859cf5be5f8a67310af3d (diff)
downloadnixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.tar
nixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.tar.gz
nixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.tar.bz2
nixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.tar.lz
nixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.tar.xz
nixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.tar.zst
nixlib-42df4e6686b6a854a08cabc3a7b3a49ea4d96d77.zip
pokerth: build with protobuf 3.4
It fails to compile with 3.5 and 3.6.
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 956ab1a6f498..46cc486788d7 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.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;