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:
parent
8b10c8d0f3
commit
9594203e07
12 changed files with 178 additions and 0 deletions
14
third_party/gopkgs/github.com/hashicorp/golang-lru/default.nix
vendored
Normal file
14
third_party/gopkgs/github.com/hashicorp/golang-lru/default.nix
vendored
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue