5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
45 lines
968 B
Nix
45 lines
968 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "goimports-reviser";
|
|
version = "3.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "incu6us";
|
|
repo = "goimports-reviser";
|
|
rev = "v${version}";
|
|
hash = "sha256-JIXBC7fk/Bd3tTHiK+qtB+5CdAATaB/j1nvKOJrz4n4=";
|
|
};
|
|
vendorHash = "sha256-lyV4HlpzzxYC6OZPGVdNVL2mvTFE9yHO37zZdB/ePBg=";
|
|
|
|
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 ];
|
|
};
|
|
}
|