2020-09-30 03:42:59 +00:00
|
|
|
# Copyright 2019 Google LLC.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# This file provides derivations for the dependencies of a gRPC
|
|
|
|
# service in Go.
|
|
|
|
|
2021-11-20 19:06:43 +00:00
|
|
|
{ gopkgs }:
|
2020-09-30 03:42:59 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (builtins) fetchGit map;
|
|
|
|
in rec {
|
2021-11-20 19:06:43 +00:00
|
|
|
goProto = gopkgs."google.golang.org".protobuf;
|
|
|
|
goGrpc = gopkgs."google.golang.org".grpc;
|
2020-09-30 03:42:59 +00:00
|
|
|
}
|