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>2019-08-22 20:17:54 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-08-22 20:17:54 -0500
commit16dec82d99c0949e5d40ded05fc07f2b70069b7f (patch)
tree1bea85c29d4ccea6f6d7540a473c12ca6a421dc5 /pkgs/development/libraries/grpc/default.nix
parente053231f40d9b7dd17714016fd1b5a31048fcf9d (diff)
downloadnixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.tar
nixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.tar.gz
nixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.tar.bz2
nixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.tar.lz
nixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.tar.xz
nixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.tar.zst
nixpkgs-16dec82d99c0949e5d40ded05fc07f2b70069b7f.zip
grpc: add marsam as maintainer
Diffstat (limited to 'pkgs/development/libraries/grpc/default.nix')
-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 697dbf9e7ff..78335e073ed 100644
--- a/pkgs/development/libraries/grpc/default.nix
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, cmake, zlib, c-ares, pkgconfig, openssl, protobuf, gflags }:
 
 stdenv.mkDerivation rec {
-  version = "1.23.0";
+  version = "1.23.0"; # N.B: if you change this, change pythonPackages.grpcio and pythonPackages.grpcio-tools to a matching version too
   name = "grpc-${version}";
   src = fetchFromGitHub {
     owner = "grpc";
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)";
     license = licenses.asl20;
-    maintainers = [ maintainers.lnl7 ];
+    maintainers = [ maintainers.lnl7 maintainers.marsam ];
     homepage = https://grpc.io/;
   };
 }