depot/third_party/nixpkgs/pkgs/by-name/nl/nls/package.nix
Default email b5f92a349c Project import generated by Copybara.
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
2023-10-19 15:55:26 +02:00

21 lines
551 B
Nix

{ symlinkJoin
, nickel
}:
symlinkJoin {
name = "nls-${nickel.version}";
pname = "nls";
inherit (nickel) version;
paths = [ nickel.nls ];
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.
'';
};
}