jinja-lsp: init at 0.1.84 (#383855)

This commit is contained in:
h7x4
2025-02-26 13:11:39 +01:00
committed by GitHub
+32
View File
@@ -0,0 +1,32 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "jinja-lsp";
version = "0.1.84";
src = fetchFromGitHub {
owner = "uros-5";
repo = "jinja-lsp";
tag = "v${version}";
hash = "sha256-VgdrPpYY2RC+6JKaPYcd0wI381TPaE/NBx7uDI8Ud5g=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-7h2iY6tpUoOGnLmhI8SJUSLlM9CadgtiWEFHFr1gURs=";
cargoBuildFlags = [
"-p"
"jinja-lsp"
];
meta = {
description = "Language server implementation for jinja2";
homepage = "https://github.com/uros-5/jinja-lsp";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ adamjhf ];
mainProgram = "jinja-lsp";
};
}