evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / goimports-reviser / package.nix
blobb7bdf8632164dcf977b787ecf98f0b8159872db6
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "goimports-reviser";
8   version = "3.6.5";
10   src = fetchFromGitHub {
11     owner = "incu6us";
12     repo = "goimports-reviser";
13     rev = "v${version}";
14     hash = "sha256-46s6A1sGqoJR3XihaCkVCxTpManl330mMcJ8hv66zDc=";
15   };
16   vendorHash = "sha256-z+FeAXPXKi653im2X2WOP1R9gRl/x7UBnndoEXoxdwA=";
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     mainProgram = "goimports-reviser";
42     homepage = "https://github.com/incu6us/goimports-reviser";
43     license = licenses.mit;
44     maintainers = with maintainers; [ jk ];
45   };