golangci-lint: format rfc style

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2024-11-11 08:29:05 +01:00
parent d73ef7d053
commit edb9e947c5

View File

@ -1,4 +1,9 @@
{ buildGo123Module, fetchFromGitHub, lib, installShellFiles }:
{
buildGo123Module,
fetchFromGitHub,
lib,
installShellFiles,
}:
buildGo123Module rec {
pname = "golangci-lint";
@ -37,6 +42,9 @@ buildGo123Module rec {
changelog = "https://github.com/golangci/golangci-lint/blob/v${version}/CHANGELOG.md";
mainProgram = "golangci-lint";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ SuperSandro2000 mic92 ];
maintainers = with maintainers; [
SuperSandro2000
mic92
];
};
}