mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
Merge pull request #243285 from c-h-johnson/openscad-lsp
openscad-lsp: init at 1.2.5
This commit is contained in:
commit
c4e69f2201
@ -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";
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user