Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / goimports-reviser / default.nix
blob7f79d3b5fe33ac4214551a4b4584316204b83370
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "goimports-reviser";
8   version = "3.5.6";
10   src = fetchFromGitHub {
11     owner = "incu6us";
12     repo = "goimports-reviser";
13     rev = "v${version}";
14     hash = "sha256-OMCmW2GhByuVN8+Kuaw9o2oCrdA6C9fK/C7yl7wI2Ls=";
15   };
16   vendorHash = "sha256-aYhUsO3Z0uue66XB+/oSVYLG9QGyVcFeZ0ngzhpBZxo=";
18   CGO_ENABLED = 0;
20   subPackages = [ "." ];
22   ldflags = [
23     "-s"
24     "-w"
25     "-X=main.Tag=${src.rev}"
26   ];
28   checkFlags = [
29     "-skip=TestSourceFile_Fix_WithAliasForVersionSuffix/success_with_set_alias"
30   ];
32   preCheck = ''
33     # unset to run all tests
34     unset subPackages
35     # unset as some tests require cgo
36     unset CGO_ENABLED
37   '';
39   meta = with lib; {
40     description = "Right imports sorting & code formatting tool (goimports alternative)";
41     homepage = "https://github.com/incu6us/goimports-reviser";
42     license = licenses.mit;
43     maintainers = with maintainers; [ jk ];
44   };