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
];
}

View file

@ -0,0 +1,14 @@
{ pkgs, ... }:
pkgs.buildGo.external {
path = "google.golang.org/genproto";
src = builtins.fetchGit {
url = "https://github.com/google/go-genproto";
rev = "55e96fffbd486c27fc0d5b4468c497d0de3f2727";
};
deps = with pkgs.third_party; [
gopkgs."github.com".golang.protobuf.proto.gopkg
gopkgs."github.com".golang.protobuf.ptypes.any.gopkg
];
}

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
pkgs.buildGo.external {
path = "google.golang.org/grpc";
src = builtins.fetchGit {
url = "https://github.com/grpc/grpc-go";
rev = "451cf373a706e089ca34abd9ea14cbc20b34c1fc";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
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
];
}