golangci-lint-langserver: init at 0.0.6 (#177692)

* golangci-lint-langserver: init at 0.0.6

* Update pkgs/development/tools/golangci-lint-langserver/default.nix

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
This commit is contained in:
Sandro 2022-06-16 17:57:04 +02:00 committed by GitHub
parent c4159a237e
commit 22e7607da5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "golangci-lint-langserver";
version = "0.0.6";
src = fetchFromGitHub {
owner = "nametake";
repo = "golangci-lint-langserver";
rev = "v${version}";
sha256 = "0x3qr2ckyk6rcn2rfm2sallzdprzxjh590gh3bfvqn7nb1mfw367";
};
vendorSha256 = "sha256-tAcl6P+cgqFX1eMYdS8vnfdNyb+1QNWwWdJsQU6Fpgg=";
subPackages = [ "." ];
meta = with lib; {
description = "Language server for golangci-lint";
homepage = "https://github.com/nametake/golangci-lint-langserver";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View file

@ -23614,6 +23614,8 @@ with pkgs;
buildGoModule = buildGo118Module;
};
golangci-lint-langserver = callPackage ../development/tools/golangci-lint-langserver { };
gocyclo = callPackage ../development/tools/gocyclo { };
godef = callPackage ../development/tools/godef { };