Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jinja-lsp: init at 0.1.81 #341074

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12334,6 +12334,13 @@
githubId = 39707188;
name = "Lynn Dong";
};
lytedev = {
email = "daniel+nixpkgs@gmail.com";
github = "lytedev";
githubId = 508402;
name = "Daniel Flanagan";
keys = [ { fingerprint = "823E B345 6C62 D193 8904 2027 5B20 20A0 F992 1EF4"; } ];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only needed if you sign your git commits.

};
m00wl = {
name = "Moritz Lumme";
email = "moritz.lumme@gmail.com";
Expand Down
27 changes: 27 additions & 0 deletions pkgs/by-name/ji/jinja-lsp/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchCrate,
}:
rustPlatform.buildRustPackage rec {
pname = "jinja-lsp";
version = "0.1.81";

src = fetchCrate {
inherit version;
crateName = "jinja-lsp";
hash = "sha256-2xXztfLpE7ikE7ICUZVp//6tt9K0ILRFOmFLyH7DLsQ=";
};

cargoHash = "sha256-vMoDbUDImDp+DPjS0rfJD9hYUa79bKsDUyAhAZvEyxA=";

meta = with lib; {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
meta = with lib; {
meta = {

description = "Language server for Jinja";
longDescription = "jinja-lsp enhances minijinja development experience by providing Helix/Nvim users with advanced features such as autocomplete, syntax highlighting, hover, goto definition, code actions and linting.";
homepage = "https://github.com/uros-5/jinja-lsp";
changelog = "https://github.com/uros-5/jinja-lsp/releases";
license = licenses.mit;
maintainers = with maintainers; [ lytedev ];
Comment on lines +23 to +24
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
license = licenses.mit;
maintainers = with maintainers; [ lytedev ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lytedev ];

mainProgram = "jinja-lsp";
};
}