nixpkgs/pkgs/by-name/nl/nls/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
551 B
Nix
Raw Normal View History

{ symlinkJoin
2023-05-17 14:27:49 +00:00
, nickel
}:
symlinkJoin {
name = "nls-${nickel.version}";
2023-05-17 14:27:49 +00:00
pname = "nls";
inherit (nickel) version;
2023-05-17 14:27:49 +00:00
paths = [ nickel.nls ];
2023-05-17 14:27:49 +00:00
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.
'';
};
}