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,14 @@
{ pkgs, ... }:
pkgs.buildGo.external {
path = "github.com/hashicorp/golang-lru";
src = builtins.fetchGit {
url = "https://github.com/hashicorp/golang-lru";
rev = "7f827b33c0f158ec5dfbba01bb0b14a4541fd81d";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
gopkgs."golang.org".x.net.context.ctxhttp
gopkgs."cloud.google.com".go.compute.metadata
];
}