about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/hashicorp/golang-lru/default.nix
blob: 417826adab516d28e43d2de0cece01709eb70e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ depot, ... }:

depot.nix.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; [
    gopkgs."golang.org".x.net.context.ctxhttp
    gopkgs."cloud.google.com".go.compute.metadata
  ];
}