about summary refs log tree commit diff
path: root/pkgs/by-name/nl/nls/package.nix
blob: 136920367da289624e0cfbe68a5daed4d10d6ec6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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";
    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.
    '';
  };
}