2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2019-12-13 13:12:06 +01:00
|
|
|
|
|
|
|
let
|
2020-02-21 13:47:29 +01:00
|
|
|
inherit (depot) buildGo;
|
2019-12-13 13:12:06 +01:00
|
|
|
inherit (builtins) fetchGit;
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.buildGo.external {
|
2019-12-13 13:12:06 +01:00
|
|
|
path = "github.com/googleapis/gax-go";
|
|
|
|
src = fetchGit {
|
|
|
|
url = "https://github.com/googleapis/gax-go";
|
2019-12-13 22:30:14 +01:00
|
|
|
rev = "b443e5a67ec8eeac76f5f384004931878cab24b3";
|
2019-12-13 13:12:06 +01:00
|
|
|
};
|
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = with depot.third_party; [
|
2019-12-13 13:12:06 +01:00
|
|
|
gopkgs."golang.org".x.net.trace.gopkg
|
|
|
|
gopkgs."google.golang.org".grpc.gopkg
|
|
|
|
gopkgs."google.golang.org".grpc.codes.gopkg
|
|
|
|
gopkgs."google.golang.org".grpc.status.gopkg
|
|
|
|
];
|
|
|
|
}
|