aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/grpc
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-09-09 18:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-09-09 18:00:00 -0500
commit4051e867ba04cf4c1bccf0a2da5553cde2645821 (patch)
tree2d901be73159320d49404265df2b7b4c1612bfc3 /pkgs/development/libraries/grpc
parentb03c729c88dadfcab53019d4d7a7db9899fb6ad6 (diff)
grpc: 1.31.0 -> 1.32.0
https://github.com/grpc/grpc/releases/tag/v1.32.0
Diffstat (limited to 'pkgs/development/libraries/grpc')
-rw-r--r--pkgs/development/libraries/grpc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix
index b0fe149b6f06..b5d4db8b4198 100644
--- a/pkgs/development/libraries/grpc/default.nix
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, fetchpatch, cmake, zlib, c-ares, pkgconfig, openssl, protobuf, gflags, abseil-cpp }:
stdenv.mkDerivation rec {
- version = "1.31.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
+ version = "1.32.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
pname = "grpc";
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
- sha256 = "1h7gmhkjijfkpqhz8vswhkz2gkphs638g10dlkayic8xg9xdl4gj";
+ sha256 = "0v48h0j0gxcp9s63z1ibwgz4416qd6iq728la80y6gl8rklrqf0c";
fetchSubmodules = true;
};
patches = [