2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
45 lines
968 B
Nix
45 lines
968 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "goimports-reviser";
|
|
version = "3.5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "incu6us";
|
|
repo = "goimports-reviser";
|
|
rev = "v${version}";
|
|
hash = "sha256-OMCmW2GhByuVN8+Kuaw9o2oCrdA6C9fK/C7yl7wI2Ls=";
|
|
};
|
|
vendorHash = "sha256-aYhUsO3Z0uue66XB+/oSVYLG9QGyVcFeZ0ngzhpBZxo=";
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.Tag=${src.rev}"
|
|
];
|
|
|
|
checkFlags = [
|
|
"-skip=TestSourceFile_Fix_WithAliasForVersionSuffix/success_with_set_alias"
|
|
];
|
|
|
|
preCheck = ''
|
|
# unset to run all tests
|
|
unset subPackages
|
|
# unset as some tests require cgo
|
|
unset CGO_ENABLED
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Right imports sorting & code formatting tool (goimports alternative)";
|
|
homepage = "https://github.com/incu6us/goimports-reviser";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jk ];
|
|
};
|
|
}
|