tvl-depot/third_party/gopkgs/golang.org/x/oauth2/default.nix
Vincent Ambo 9594203e07 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.
2019-12-13 12:12:06 +00:00

14 lines
362 B
Nix

{ pkgs, ... }:
pkgs.buildGo.external {
path = "golang.org/x/oauth2";
src = builtins.fetchGit {
url = "https://go.googlesource.com/oauth2";
rev = "0f29369cfe4552d0e4bcddc57cc75f4d7e672a33";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
gopkgs."golang.org".x.net.context.ctxhttp
gopkgs."cloud.google.com".go.compute.metadata
];
}