Skip to content

Commit fab1c4d

Browse files
authored
jinja-lsp: init at 0.1.84 (#383855)
2 parents 2b16e74 + 67aae84 commit fab1c4d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
lib,
3+
rustPlatform,
4+
fetchFromGitHub,
5+
}:
6+
rustPlatform.buildRustPackage rec {
7+
pname = "jinja-lsp";
8+
version = "0.1.84";
9+
10+
src = fetchFromGitHub {
11+
owner = "uros-5";
12+
repo = "jinja-lsp";
13+
tag = "v${version}";
14+
hash = "sha256-VgdrPpYY2RC+6JKaPYcd0wI381TPaE/NBx7uDI8Ud5g=";
15+
};
16+
17+
useFetchCargoVendor = true;
18+
cargoHash = "sha256-7h2iY6tpUoOGnLmhI8SJUSLlM9CadgtiWEFHFr1gURs=";
19+
20+
cargoBuildFlags = [
21+
"-p"
22+
"jinja-lsp"
23+
];
24+
25+
meta = {
26+
description = "Language server implementation for jinja2";
27+
homepage = "https://github.com/uros-5/jinja-lsp";
28+
license = lib.licenses.mit;
29+
maintainers = with lib.maintainers; [ adamjhf ];
30+
mainProgram = "jinja-lsp";
31+
};
32+
}

0 commit comments

Comments
 (0)