tvl-depot/third_party/gopkgs/github.com/jbenet/go-context/default.nix
edef 94387dbc25 chore: simplify buildGo expressions
This removes redundant `map (p: p.gopkg)` expressions.

Change-Id: If25d603c27d63ae011f396caf5d26cdfdb8c28d5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1625
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
2020-08-04 07:43:25 +00:00

16 lines
384 B
Nix

{ 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; [
gopkgs."golang.org".x.net.context
];
}