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

29 lines
665 B
Nix
Raw Normal View History

2018-11-03 06:49:58 +03:00
{ buildGoPackage
, lib
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "goconst";
2020-11-22 01:43:54 +03:00
version = "1.4.0";
2018-11-03 06:49:58 +03:00
goPackagePath = "github.com/jgautheron/goconst";
2020-10-01 12:20:00 +03:00
excludedPackages = [ "tests" ];
2018-11-03 06:49:58 +03:00
src = fetchFromGitHub {
owner = "jgautheron";
repo = "goconst";
rev = version;
2020-11-22 01:43:54 +03:00
sha256 = "0jp9vg5l4wcvnf653h3d8ay2n7y717l9z34rls1vrsaf0qdf1r6v";
2018-11-03 06:49:58 +03: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 06:49:58 +03:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}