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

28 lines
665 B
Nix
Raw Normal View History

2018-11-03 03:49:58 +00:00
{ buildGoPackage
, lib
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "goconst";
2020-09-25 09:15:27 +01:00
version = "1.2.0";
2018-11-03 03:49:58 +00:00
goPackagePath = "github.com/jgautheron/goconst";
excludedPackages = ''testdata'';
src = fetchFromGitHub {
owner = "jgautheron";
repo = "goconst";
rev = version;
2020-09-25 09:15:27 +01:00
sha256 = "10yy9llmbznaq3v11sxywk1wpwhn0ddly7lxs31z1sf8paan7aig";
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;
};
}