2020-04-23 08:48:08 +00:00
|
|
|
{ buildGoModule
|
2018-11-02 04:34:11 +00:00
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2020-04-23 08:48:08 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gogetdoc-unstable";
|
2020-04-23 08:48:08 +00:00
|
|
|
version = "2019-02-28";
|
|
|
|
rev = "b37376c5da6aeb900611837098f40f81972e63e4";
|
|
|
|
|
2020-05-01 01:59:00 +00:00
|
|
|
vendorSha256 = null;
|
2018-11-02 04:34:11 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2018-11-02 04:34:11 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
|
|
|
|
owner = "zmb3";
|
|
|
|
repo = "gogetdoc";
|
2020-04-23 08:48:08 +00:00
|
|
|
sha256 = "1v74zd0x2xh10603p8raazssacv3y0x0lr9apkpsdk0bfp5jj0lr";
|
2018-11-02 04:34:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Gets documentation for items in Go source code";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/zmb3/gogetdoc";
|
2018-11-02 04:34:11 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
2020-06-09 15:07:41 +00:00
|
|
|
}
|