diff options
Diffstat (limited to 'third_party/gopkgs/github.com/jbenet/go-context/default.nix')
-rw-r--r-- | third_party/gopkgs/github.com/jbenet/go-context/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/gopkgs/github.com/jbenet/go-context/default.nix b/third_party/gopkgs/github.com/jbenet/go-context/default.nix new file mode 100644 index 000000000000..4092f8ecff24 --- /dev/null +++ b/third_party/gopkgs/github.com/jbenet/go-context/default.nix @@ -0,0 +1,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 + ]; +} |