Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / goconst / default.nix
blob7d0123f00f85fd51a1cd16f6bb9dc5dd9d39f15f
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "goconst";
5   version = "1.6.0";
7   excludedPackages = [ "tests" ];
9   src = fetchFromGitHub {
10     owner = "jgautheron";
11     repo = "goconst";
12     rev = "v${version}";
13     sha256 = "sha256-gd+0Gm1qANwgYKWAxpU7759BhyURalJCRxd/P6sczc4=";
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     homepage = "https://github.com/jgautheron/goconst";
23     license = licenses.mit;
24     maintainers = with maintainers; [ kalbasit ];
25     platforms = platforms.linux ++ platforms.darwin;
26   };