gosimports: init at 0.3.8

This commit is contained in:
Shaolong Chen 2023-11-21 12:58:00 +08:00
parent 5b4b6f409a
commit ea8fa29ac1

View File

@ -0,0 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gosimports";
version = "0.3.8";
src = fetchFromGitHub {
owner = "rinchsan";
repo = "gosimports";
rev = "v${version}";
hash = "sha256-xM1CGW8UB+VHN+2Rm6cF/1bOBVDeUG+6kxUxUcvP7FM=";
};
vendorHash = "sha256-xR1YTwUcJcpe4NXH8sp9bNAWggvcvVJLztD49gQIdMU=";
subPackages = [ "cmd/gosimports" ];
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
meta = with lib; {
homepage = "https://github.com/rinchsan/gosimports";
description = "Simpler goimports";
license = licenses.bsd3;
maintainers = with maintainers; [ maolonglong ];
mainProgram = "gosimports";
};
}