blob: 4e8073f93a2f063094fe79c3c0ea432fb09191a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ depot, ... }:
depot.buildGo.external {
path = "github.com/hashicorp/golang-lru";
src = builtins.fetchGit {
url = "https://github.com/hashicorp/golang-lru";
rev = "7f827b33c0f158ec5dfbba01bb0b14a4541fd81d";
};
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."golang.org".x.net.context.ctxhttp
gopkgs."cloud.google.com".go.compute.metadata
];
}
|