Files
nixpkgs/pkgs/by-name/ji/jinja-lsp/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

32 lines
672 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "jinja-lsp";
version = "0.1.89";
src = fetchFromGitHub {
owner = "uros-5";
repo = "jinja-lsp";
tag = "v${version}";
hash = "sha256-K+7HS1dtDtHNMIseXopWzkFM3wC5b/sfYeHI3vxw74Q=";
};
cargoHash = "sha256-TxpQ5kGGjEXNSzLdcwVmzuD189xcX1ndYRdRvLTlIQw=";
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";
};
}