summary refs log tree commit diff
path: root/pkgs/development/libraries/grpc/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-02 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-04-02 04:20:00 -0500
commitad871d23f661531d0f6a8e15e2cf1bed67b53fed (patch)
treecd482827fd281b6577445d464655c04b0a64aa4c /pkgs/development/libraries/grpc/default.nix
parent45407168487b9d860aba1b1e9ab7a4b29eda627e (diff)
downloadnixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.tar
nixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.tar.gz
nixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.tar.bz2
nixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.tar.lz
nixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.tar.xz
nixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.tar.zst
nixpkgs-ad871d23f661531d0f6a8e15e2cf1bed67b53fed.zip
grpc: 1.27.1 -> 1.28.1
Changelog:
- https://github.com/grpc/grpc/releases/tag/v1.28.0
- https://github.com/grpc/grpc/releases/tag/v1.28.1
Diffstat (limited to 'pkgs/development/libraries/grpc/default.nix')
-rw-r--r--pkgs/development/libraries/grpc/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix
index 815d3becf6f..8549eeffde6 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, fetchFromGitHub, fetchpatch, cmake, zlib, c-ares, pkgconfig, openssl, protobuf, gflags, abseil-cpp }:
 
 stdenv.mkDerivation rec {
-  version = "1.27.1"; # N.B: if you change this, change pythonPackages.grpcio and pythonPackages.grpcio-tools to a matching version too
+  version = "1.28.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 = "1yvmqxv6pwzbxw3si47x3anvl2pp3qy1acspmz4v60pd188c1fnc";
+    sha256 = "17p3xwz5izlqg5ijnim4asl40pr8yhg9wrrmws4g0dk37nkn1x6p";
     fetchSubmodules = true;
   };
   patches = [
@@ -49,6 +49,8 @@ stdenv.mkDerivation rec {
     description = "The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)";
     license = licenses.asl20;
     maintainers = [ maintainers.lnl7 maintainers.marsam ];
-    homepage = https://grpc.io/;
+    homepage = "https://grpc.io/";
+    platforms = platforms.all;
+    changelog = "https://github.com/grpc/grpc/releases/tag/v${version}";
   };
 }