3842c184b6
This makes it possible to deprecate the previous alias. Change-Id: I6efe73a21dc771cfa28094bbac434a188aebfd45 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2647 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
21 lines
673 B
Nix
21 lines
673 B
Nix
{ depot, ... }:
|
|
|
|
depot.nix.buildGo.external {
|
|
path = "google.golang.org/grpc";
|
|
src = builtins.fetchGit {
|
|
url = "https://github.com/grpc/grpc-go";
|
|
rev = "085c980048876e2735d4aba8f0d5bca4d7acaaa5";
|
|
};
|
|
|
|
deps = with depot.third_party; [
|
|
gopkgs."golang.org".x.net.trace
|
|
gopkgs."golang.org".x.net.http2
|
|
gopkgs."golang.org".x.net.http2.hpack
|
|
gopkgs."golang.org".x.sys.unix
|
|
gopkgs."github.com".golang.protobuf.proto
|
|
gopkgs."github.com".golang.protobuf.ptypes
|
|
gopkgs."github.com".golang.protobuf.ptypes.duration
|
|
gopkgs."github.com".golang.protobuf.ptypes.timestamp
|
|
gopkgs."google.golang.org".genproto.googleapis.rpc.status
|
|
];
|
|
}
|