mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
htmx-lsp: init at 0.1.0
This commit is contained in:
parent
6e62521155
commit
2ecaa715f3
26
pkgs/by-name/ht/htmx-lsp/package.nix
Normal file
26
pkgs/by-name/ht/htmx-lsp/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "htmx-lsp";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ThePrimeagen";
|
||||
repo = "htmx-lsp";
|
||||
rev = version;
|
||||
hash = "sha256-CvQ+vgo3+qUOj0SS6/NrapzXkP98tpiZbGhRHJxEqeo=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-qKiFUnNUOBakfK3Vplr/bLR+4L/vIViHJYgw9+RoRZQ=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Language server implementation for htmx";
|
||||
homepage = "https://github.com/ThePrimeagen/htmx-lsp";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ vinnymeller ];
|
||||
mainProgram = "htmx-lsp";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user