2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, fetchFromGitHub
|
2023-10-09 19:29:22 +00:00
|
|
|
, gitUpdater
|
2021-02-05 17:12:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "grpc-tools";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "1.12.4";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "grpc";
|
|
|
|
repo = "grpc-node";
|
2021-08-23 08:02:39 +00:00
|
|
|
rev = "grpc-tools@${version}";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-708lBIGW5+vvSTrZHl/kc+ck7JKNXElrghIGDrMSyx8=";
|
2021-02-05 17:12:51 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
sourceRoot = "${src.name}/packages/grpc-tools";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 -t $out/bin grpc_node_plugin
|
|
|
|
install -Dm755 -t $out/bin deps/protobuf/protoc
|
|
|
|
'';
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
url = "https://github.com/grpc/grpc-node.git";
|
|
|
|
rev-prefix = "grpc-tools@";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Distribution of protoc and the gRPC Node protoc plugin for ease of installation with npm";
|
|
|
|
longDescription = ''
|
|
|
|
This package distributes the Protocol Buffers compiler protoc along with
|
|
|
|
the plugin for generating client and service objects for use with the Node
|
|
|
|
gRPC libraries.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/grpc/grpc-node/tree/master/packages/grpc-tools";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.nzhang-zh ];
|
|
|
|
};
|
|
|
|
}
|