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

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

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