mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
22 lines
574 B
Nix
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.
|
|
'';
|
|
};
|
|
}
|