mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
23 lines
576 B
Nix
23 lines
576 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";
|
|
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.
|
|
'';
|
|
};
|
|
}
|