2018-09-28 19:00:38 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2018-01-04 17:50:10 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "go-symbols-${version}";
|
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 = {
|
|
|
|
description = "A utility for extracting a JSON representation of the package symbols from a go source tree.";
|
|
|
|
homepage = https://github.com/acroca/go-symbols;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|