Merge pull request #33428 from vdemeester/init-go-outline
go-outline: init at 2017-08-04
This commit is contained in:
commit
71f1296b83
3 changed files with 38 additions and 0 deletions
24
pkgs/development/tools/go-outline/default.nix
Normal file
24
pkgs/development/tools/go-outline/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "go-outline-${version}";
|
||||
version = "unstable-2017-08-04";
|
||||
rev = "9e9d089bb61a5ce4f8e0c8d8dc5b4e41b0e02a48";
|
||||
|
||||
goPackagePath = "github.com/ramya-rao-a/go-outline";
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "ramya-rao-a";
|
||||
repo = "go-outline";
|
||||
sha256 = "0kbkv4d6q9w0d41m00sqdm10l0sg56mv8y6rmidqs152mm2w13x0";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Utility to extract JSON representation of declarations from a Go source file.";
|
||||
homepage = https://github.com/ramya-rao-a/go-outline;
|
||||
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
11
pkgs/development/tools/go-outline/deps.nix
Normal file
11
pkgs/development/tools/go-outline/deps.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
[
|
||||
{
|
||||
goPackagePath = "golang.org/x/tools";
|
||||
fetch = {
|
||||
type = "git";
|
||||
url = "https://github.com/golang/tools";
|
||||
rev = "96b5a5404f303f074e6117d832a9873c439508f0";
|
||||
sha256 = "1h6r9xyp1v3w2x8d108vzghn65l6ia2h895irypmrwymfcp30y42";
|
||||
};
|
||||
}
|
||||
]
|
|
@ -13373,8 +13373,11 @@ with pkgs;
|
|||
|
||||
go-protobuf = callPackage ../development/tools/go-protobuf { };
|
||||
|
||||
|
||||
go-symbols = callPackage ../development/tools/go-symbols { };
|
||||
|
||||
go-outline = callPackage ../development/tools/go-outline { };
|
||||
|
||||
gocode = callPackage ../development/tools/gocode { };
|
||||
|
||||
goconvey = callPackage ../development/tools/goconvey { };
|
||||
|
|
Loading…
Reference in a new issue