efm-langserver: init at 0.0.31
This commit is contained in:
parent
7969b9d1a8
commit
04a16067b4
2 changed files with 26 additions and 0 deletions
24
pkgs/development/tools/efm-langserver/default.nix
Normal file
24
pkgs/development/tools/efm-langserver/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ 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;
|
||||||
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
};
|
||||||
|
}
|
|
@ -13266,6 +13266,8 @@ in
|
||||||
|
|
||||||
effitask = callPackage ../applications/misc/effitask { };
|
effitask = callPackage ../applications/misc/effitask { };
|
||||||
|
|
||||||
|
efm-langserver = callPackage ../development/tools/efm-langserver { };
|
||||||
|
|
||||||
egypt = callPackage ../development/tools/analysis/egypt { };
|
egypt = callPackage ../development/tools/analysis/egypt { };
|
||||||
|
|
||||||
elfinfo = callPackage ../development/tools/misc/elfinfo { };
|
elfinfo = callPackage ../development/tools/misc/elfinfo { };
|
||||||
|
|
Loading…
Reference in a new issue