Merge pull request #121384 from Philipp-M/init-efm-langserver

This commit is contained in:
Sandro 2021-06-26 19:01:58 +02:00 committed by GitHub
commit dea318a482
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -8120,6 +8120,12 @@
githubId = 1640697;
name = "Philipp Hausmann";
};
Philipp-M = {
email = "philipp@mildenberger.me";
github = "Philipp-M";
githubId = 9267430;
name = "Philipp Mildenberger";
};
Phlogistique = {
email = "noe.rubinstein@gmail.com";
github = "Phlogistique";

View file

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "efm-langserver";
version = "0.0.31";
src = fetchFromGitHub {
owner = "mattn";
repo = "efm-langserver";
rev = "v${version}";
sha256 = "sha256-4NdD+WwvlqfJdPqXTz9LUyriJyLPppi8jH6dxYupe6A=";
};
vendorSha256 = "sha256-tca+1SRrFyvU8ttHmfMFiGXd1A8rQSEWm1Mc2qp0EfI=";
subPackages = [ "." ];
meta = with lib; {
description = "General purpose Language Server";
maintainers = with maintainers; [ Philipp-M ];
homepage = "https://github.com/mattn/efm-langserver";
license = licenses.mit;
};
}

View file

@ -13403,6 +13403,8 @@ in
effitask = callPackage ../applications/misc/effitask { };
efm-langserver = callPackage ../development/tools/efm-langserver { };
egypt = callPackage ../development/tools/analysis/egypt { };
elfinfo = callPackage ../development/tools/misc/elfinfo { };