depot/third_party/nixpkgs/pkgs/by-name/nl/nls/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

22 lines
574 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 = "Language server for the Nickel programming language";
mainProgram = "nls";
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.
'';
};
}