kittycad-kcl-lsp: init at 0.1.61 (#355668)
This commit is contained in:
@@ -10524,6 +10524,12 @@
|
||||
githubId = 1058504;
|
||||
name = "José Luis Lafuente";
|
||||
};
|
||||
jljox = {
|
||||
email = "jeanluc.jox@gmail.com";
|
||||
github = "jljox";
|
||||
githubId = 3665886;
|
||||
name = "Jean-Luc Jox";
|
||||
};
|
||||
jloyet = {
|
||||
email = "ml@fatbsd.com";
|
||||
github = "fatpat";
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "kittycad-kcl-lsp";
|
||||
version = "0.1.61";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KittyCAD";
|
||||
repo = "kcl-lsp";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-VtrR4v0BJWYdoYFDJpWnmVqDhZMlPGm+g9yjxYfcFxQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-51eFOJnc/GqgXtfVx/omR+KuC7x/oKGGR+s0z6nKXBg=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
meta = {
|
||||
description = "KittyCAD KCL language server";
|
||||
changelog = "https://github.com/KittyCAD/kcl-lsp/releases/tag/v${version}";
|
||||
homepage = "https://github.com/KittyCAD/kcl-lsp";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jljox ];
|
||||
mainProgram = "kittycad-kcl-lsp";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user