goconst: init at 1.1.0
This commit is contained in:
parent
63d9863394
commit
fe83c5c3f5
27
pkgs/development/tools/goconst/default.nix
Normal file
27
pkgs/development/tools/goconst/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ buildGoPackage
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "goconst-${version}";
|
||||
version = "1.1.0";
|
||||
|
||||
goPackagePath = "github.com/jgautheron/goconst";
|
||||
excludedPackages = ''testdata'';
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jgautheron";
|
||||
repo = "goconst";
|
||||
rev = version;
|
||||
sha256 = "0zhscvv9w54q1h2vs8xx3qkz98cf36qhxjvdq0xyz3qvn4vhnyw6";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Find in Go repeated strings that could be replaced by a constant";
|
||||
homepage = https://github.com/jgautheron/goconst;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
@ -14727,6 +14727,8 @@ with pkgs;
|
||||
|
||||
gocode = callPackage ../development/tools/gocode { };
|
||||
|
||||
goconst = callPackage ../development/tools/goconst { };
|
||||
|
||||
goconvey = callPackage ../development/tools/goconvey { };
|
||||
|
||||
gotags = callPackage ../development/tools/gotags { };
|
||||
|
Loading…
Reference in New Issue
Block a user