9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
28 lines
683 B
Nix
28 lines
683 B
Nix
{ 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 ];
|
|
};
|
|
}
|