about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/jbenet/go-context/default.nix
blob: 4092f8ecff24b84011322c2f9f8407f7a8d85a23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ depot, ... }:

depot.buildGo.external {
  path = "github.com/jbenet/go-context";

  src = depot.third_party.fetchFromGitHub {
    owner = "jbenet";
    repo = "go-context";
    rev = "d14ea06fba99483203c19d92cfcd13ebe73135f4";
    sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl";
  };

  deps = with depot.third_party; map (p: p.gopkg) [
    gopkgs."golang.org".x.net.context
  ];
}