1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

grpc: add marsam as maintainer

This commit is contained in:
Mario Rodas 2019-08-22 20:17:54 -05:00
parent e053231f40
commit 16dec82d99
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -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/;
};
}