mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
25 lines
655 B
Nix
25 lines
655 B
Nix
{ lib
|
|
, rustPlatform
|
|
, nickel
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "nls";
|
|
|
|
inherit (nickel) src version nativeBuildInputs;
|
|
|
|
cargoHash = "sha256-UGfc5cr6vl10aCVihOEEZktF8MzT56C9/wSvSQhCiVs=";
|
|
|
|
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.
|
|
'';
|
|
};
|
|
}
|