go-symbols: init at 2017-02-06

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-01-04 18:50:10 +01:00
parent 2cd8b7eb6d
commit 9492e5e559
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3
3 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "go-symbols-${version}";
version = "unstable-2017-02-06";
rev = "5a7f75904fb552189036c640d04cd6afef664836";
goPackagePath = "github.com/acroca/go-symbols";
goDeps = ./deps.nix;
src = fetchgit {
inherit rev;
url = "https://github.com/acroca/go-symbols";
sha256 = "0qh2jjhwwk48gi8yii0z031bah11anxfz81nwflsiww7n426a8bb";
};
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;
};
}

View file

@ -0,0 +1,11 @@
[
{
goPackagePath = "golang.org/x/tools";
fetch = {
type = "git";
url = "https://github.com/golang/tools";
rev = "96b5a5404f303f074e6117d832a9873c439508f0";
sha256 = "1h6r9xyp1v3w2x8d108vzghn65l6ia2h895irypmrwymfcp30y42";
};
}
]

View file

@ -13221,6 +13221,8 @@ with pkgs;
go-protobuf = callPackage ../development/tools/go-protobuf { };
go-symbols = callPackage ../development/tools/go-symbols { };
gocode = callPackage ../development/tools/gocode { };
goconvey = callPackage ../development/tools/goconvey { };