about summary refs log tree commit diff
path: root/pkgs/development/libraries/grpc
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-05-20 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-05-20 04:20:00 +0000
commit04e18727c4f1797b00e9505ac9185a38c764e0f1 (patch)
tree95024ebfc1e98294d1158a1543825c0890003b2f /pkgs/development/libraries/grpc
parent211fee9c4379714d861b3c875f642addbd25e920 (diff)
grpc: 1.37.1 -> 1.38.0
https://github.com/grpc/grpc/releases/tag/v1.38.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 cb2c0e79dd517..8a44c7bc13da9 100644
--- a/pkgs/development/libraries/grpc/default.nix
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -3,13 +3,13 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "1.37.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
+  version = "1.38.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 = "0mjlz2cax5v37g7xnrbf5px88bm7xzl4a5pds112yk096d7wmxm5";
+    sha256 = "0an903nh8lz3xlf79zsh2v55nrwnjzzavkjlrsl7j9aysgwmgn4r";
     fetchSubmodules = true;
   };
   patches = [