about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-01-16 17:19:23 -0500
committerGitHub <noreply@github.com>2021-01-16 17:19:23 -0500
commite1545d42aac07d97618c46fa46b070b244d2a85f (patch)
treed17709e8ae7d74fa6a2a366bf8abe7c4cee16613 /pkgs/development/libraries
parent145cf67bbbe7afc10b9db8e6454828b64a975da5 (diff)
parent096d5bf94d3f57a0e2b8b286553256e3d66c79fb (diff)
downloadnixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.tar
nixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.tar.gz
nixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.tar.bz2
nixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.tar.lz
nixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.tar.xz
nixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.tar.zst
nixlib-e1545d42aac07d97618c46fa46b070b244d2a85f.zip
Merge pull request #109513 from marsam/update-grpc
grpc: 1.34.0 -> 1.34.1 
Diffstat (limited to 'pkgs/development/libraries')
-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 346d04390c37..e24967eb30f1 100644
--- a/pkgs/development/libraries/grpc/default.nix
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -3,13 +3,13 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "1.34.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
+  version = "1.34.1"; # 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 = "0kipk26kg2x06mrkhb74k8vk5cn4mr89kw1f9mb04n616wkxjyxy";
+    sha256 = "0p6si9i0gg885ag2x87a7jyzhgd5lhx2bh2vjj2ra1jn6y3vg6qk";
     fetchSubmodules = true;
   };
   patches = [