Unverified Commit c4e69f22 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

openscad-lsp: init at 1.2.5
parents 7cbf18cb 72fa91b9
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+28 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };