nixpkgs/pkgs/development/tools/goconst/default.nix

29 lines
665 B
Nix
Raw Normal View History

2018-11-03 03:49:58 +00:00
{ buildGoPackage
, lib
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "goconst";
2020-11-21 22:43:54 +00:00
version = "1.4.0";
2018-11-03 03:49:58 +00:00
goPackagePath = "github.com/jgautheron/goconst";
2020-10-01 09:20:00 +00:00
excludedPackages = [ "tests" ];
2018-11-03 03:49:58 +00:00
src = fetchFromGitHub {
owner = "jgautheron";
repo = "goconst";
rev = version;
2020-11-21 22:43:54 +00:00
sha256 = "0jp9vg5l4wcvnf653h3d8ay2n7y717l9z34rls1vrsaf0qdf1r6v";
2018-11-03 03:49:58 +00:00
};
meta = with lib; {
description = "Find in Go repeated strings that could be replaced by a constant";
homepage = "https://github.com/jgautheron/goconst";
2018-11-03 03:49:58 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}