ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / go / goconst / package.nix
blobd080a4fe37549712de67e6cd2ce84e17b0752783
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "goconst";
5   version = "1.7.1";
7   excludedPackages = [ "tests" ];
9   src = fetchFromGitHub {
10     owner = "jgautheron";
11     repo = "goconst";
12     rev = "v${version}";
13     sha256 = "sha256-GpOZJ5/5aNw1o8fk2RSAx200v6AZ+pbNu/25i8OSS1Y=";
14   };
16   vendorHash = null;
18   ldflags = [ "-s" "-w" ];
20   meta = with lib; {
21     description = "Find in Go repeated strings that could be replaced by a constant";
22     mainProgram = "goconst";
23     homepage = "https://github.com/jgautheron/goconst";
24     license = licenses.mit;
25     maintainers = with maintainers; [ kalbasit ];
26     platforms = platforms.linux ++ platforms.darwin;
27   };