94387dbc25
This removes redundant `map (p: p.gopkg)` expressions. Change-Id: If25d603c27d63ae011f396caf5d26cdfdb8c28d5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1625 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
21 lines
669 B
Nix
21 lines
669 B
Nix
{ depot, ... }:
|
|
|
|
depot.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
|
|
];
|
|
}
|