14 lines
307 B
Nix
14 lines
307 B
Nix
# Copyright 2019 Google LLC.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# This file provides derivations for the dependencies of a gRPC
|
|
# service in Go.
|
|
|
|
{ gopkgs }:
|
|
|
|
let
|
|
inherit (builtins) fetchGit map;
|
|
in rec {
|
|
goProto = gopkgs."google.golang.org".protobuf;
|
|
goGrpc = gopkgs."google.golang.org".grpc;
|
|
}
|