2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-01-04 17:50:10 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "go-symbols";
|
2019-03-05 17:59:49 +00:00
|
|
|
version = "0.1.1";
|
2018-01-04 17:50:10 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/acroca/go-symbols";
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2018-09-28 19:00:38 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "acroca";
|
|
|
|
repo = "go-symbols";
|
2019-03-05 17:59:49 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0yyzw6clndb2r5j9isyd727njs98zzp057v314vfvknsm8g7hqrz";
|
2018-01-04 17:50:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "A utility for extracting a JSON representation of the package symbols from a go source tree";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/acroca/go-symbols";
|
2021-01-23 12:26:19 +00:00
|
|
|
maintainers = with lib.maintainers; [ vdemeester ];
|
|
|
|
license = lib.licenses.mit;
|
2018-01-04 17:50:10 +00:00
|
|
|
};
|
|
|
|
}
|