aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/grpc
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-02-08 04:20:00 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-02-10 09:52:04 +0100
commitc5a0f6b95f85fdaf3014d6f5bdc5c95655325320 (patch)
tree287976a2a169929a9c83b90bc29d32af9b74465d /pkgs/development/libraries/grpc
parent811448e4ac1aacd7525d0e3c425d746fd659a86b (diff)
grpc: 1.26.0 -> 1.27.1
Changelog: - https://github.com/grpc/grpc/releases/tag/v1.27.0 - https://github.com/grpc/grpc/releases/tag/v1.27.1
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 dfec171f1dbc..815d3becf6f8 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 }:
stdenv.mkDerivation rec {
- version = "1.26.0"; # N.B: if you change this, change pythonPackages.grpcio and pythonPackages.grpcio-tools to a matching version too
+ version = "1.27.1"; # N.B: if you change this, change pythonPackages.grpcio and pythonPackages.grpcio-tools to a matching version too
pname = "grpc";
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
- sha256 = "1fxydarl00vbhd9q153qn4ax1yc6xrd8wij6bfy9j8chipw1bgir";
+ sha256 = "1yvmqxv6pwzbxw3si47x3anvl2pp3qy1acspmz4v60pd188c1fnc";
fetchSubmodules = true;
};
patches = [