nls: init at 1.0.0
This commit is contained in:
parent
f6e33f6aa3
commit
745a1425f6
2 changed files with 26 additions and 0 deletions
24
pkgs/development/tools/language-servers/nls/default.nix
Normal file
24
pkgs/development/tools/language-servers/nls/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, nickel
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "nls";
|
||||
|
||||
inherit (nickel) src version;
|
||||
|
||||
cargoHash = "sha256-tahSuSc16oUUjeBBAnTDAiSaLr0zMKgN/XvypXqvvxw=";
|
||||
|
||||
cargoBuildFlags = [ "-p nickel-lang-lsp" ];
|
||||
|
||||
meta = {
|
||||
inherit (nickel.meta) homepage changelog license maintainers;
|
||||
description = "A language server for the Nickel programming language";
|
||||
longDescription = ''
|
||||
The Nickel Language Server (NLS) is a language server for the Nickel
|
||||
programming language. NLS offers error messages, type hints, and
|
||||
auto-completion right in your favorite LSP-enabled editor.
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -17571,6 +17571,8 @@ with pkgs;
|
|||
|
||||
nil = callPackage ../development/tools/language-servers/nil { };
|
||||
|
||||
nls = callPackage ../development/tools/language-servers/nls { };
|
||||
|
||||
pylyzer = callPackage ../development/tools/language-servers/pylyzer { };
|
||||
|
||||
rnix-lsp = callPackage ../development/tools/language-servers/rnix-lsp { };
|
||||
|
|
Loading…
Reference in a new issue