Merge pull request #243285 from c-h-johnson/openscad-lsp

openscad-lsp: init at 1.2.5
This commit is contained in:
Sandro 2023-07-13 22:51:48 +02:00 committed by GitHub
commit c4e69f2201
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View File

@ -2909,6 +2909,12 @@
githubId = 14790226;
name = "Hubert Jasudowicz";
};
c-h-johnson = {
name = "Charles Johnson";
email = "charles@charlesjohnson.name";
github = "c-h-johnson";
githubId = 138403247;
};
chkno = {
email = "scottworley@scottworley.com";
github = "chkno";

View File

@ -0,0 +1,28 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "openscad-lsp";
version = "1.2.5";
src = fetchFromGitHub {
owner = "Leathong";
repo = "openscad-LSP";
rev = "dc1283df080b981f8da620744b0fb53b22f2eb84";
hash = "sha256-IPTBWX0kKmusijg4xAvS1Ysi9WydFaUWx/BkZbMvgJk=";
};
cargoHash = "sha256-AQpjamyHienqB501lruxk56N6r8joocWrJ5srsm5baY=";
# no tests exist
doCheck = false;
meta = with lib; {
description = "A LSP (Language Server Protocol) server for OpenSCAD";
homepage = "https://github.com/Leathong/openscad-LSP";
license = licenses.asl20;
maintainers = with maintainers; [ c-h-johnson ];
};
}

View File

@ -18072,6 +18072,8 @@ with pkgs;
nls = callPackage ../development/tools/language-servers/nls { };
openscad-lsp = callPackage ../development/tools/language-servers/openscad-lsp { };
pylyzer = callPackage ../development/tools/language-servers/pylyzer { };
rnix-lsp = callPackage ../development/tools/language-servers/rnix-lsp { };