2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2019-12-19 17:25:47 +01:00
|
|
|
|
2021-03-24 00:19:17 +01:00
|
|
|
depot.nix.buildGo.external {
|
2019-12-19 17:25:47 +01:00
|
|
|
path = "github.com/jbenet/go-context";
|
|
|
|
|
2021-04-10 02:13:18 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
2019-12-19 17:25:47 +01:00
|
|
|
owner = "jbenet";
|
|
|
|
repo = "go-context";
|
|
|
|
rev = "d14ea06fba99483203c19d92cfcd13ebe73135f4";
|
|
|
|
sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl";
|
|
|
|
};
|
|
|
|
|
2020-08-03 21:28:16 +02:00
|
|
|
deps = with depot.third_party; [
|
2019-12-19 17:25:47 +01:00
|
|
|
gopkgs."golang.org".x.net.context
|
|
|
|
];
|
|
|
|
}
|