mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
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:
parent
c4159a237e
commit
22e7607da5
27
pkgs/development/tools/golangci-lint-langserver/default.nix
Normal file
27
pkgs/development/tools/golangci-lint-langserver/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue