about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/hashicorp/golang-lru/default.nix
blob: 04efc3144d9ac01394cb02ad2969a72312b08789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  ];
}