File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
pkgs/by-name/ji/jinja-lsp Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments