feat(third_party/gopkgs): Import external packages for Google Cloud

These packages contain the Cloud SDK for Go. There is currently a
linker issue (presumably due to something in `buildGo.nix`) that means
that projects using them can not actually be built.
This commit is contained in:
Vincent Ambo 2019-12-13 12:12:06 +00:00
parent 8b10c8d0f3
commit 9594203e07
12 changed files with 178 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
pkgs.buildGo.external {
path = "google.golang.org/api";
src = builtins.fetchGit {
url = "https://code.googlesource.com/google-api-go-client";
rev = "573115b31dcba90b19c25508412495d63f86e804";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
gopkgs."github.com".googleapis.gax-go.v2
gopkgs."golang.org".x.oauth2.google
gopkgs."golang.org".x.oauth2
gopkgs."google.golang.org".grpc
gopkgs."google.golang.org".grpc.naming
gopkgs."go.opencensus.io".plugin.ochttp
gopkgs."go.opencensus.io".trace
gopkgs."go.opencensus.io".trace.propagation
];
}