about summary refs log tree commit diff
path: root/third_party/gopkgs/go.opencensus.io/default.nix
blob: 4cab5e5dceba32e69c5bfc7d610fe891aa025f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

pkgs.buildGo.external {
  path = "go.opencensus.io";
  src = builtins.fetchGit {
    url = "https://github.com/census-instrumentation/opencensus-go";
    rev = "643eada29081047b355cfaa1ceb9bc307a10423c";
  };

  deps = with pkgs.third_party; map (p: p.gopkg) [
    gopkgs."github.com".hashicorp.golang-lru.simplelru
    gopkgs."github.com".golang.groupcache.lru
  ];
}