Merge pull request #285782 from augustebaum/patch-4

ruff-lsp: add `meta.mainProgram`

authored by Pol Dellaiera and committed by GitHub b42f7df8 ca2efd00

+2 -1
+2 -1
pkgs/development/tools/language-servers/ruff-lsp/default.nix
··· 64 ]; 65 66 meta = with lib; { 67 description = "A Language Server Protocol implementation for Ruff"; 68 homepage = "https://github.com/astral-sh/ruff-lsp"; 69 - changelog = "https://github.com/astral-sh/ruff-lsp/releases/tag/v${version}"; 70 license = licenses.mit; 71 maintainers = with maintainers; [ figsoda kalekseev ]; 72 }; 73 }
··· 64 ]; 65 66 meta = with lib; { 67 + changelog = "https://github.com/astral-sh/ruff-lsp/releases/tag/v${version}"; 68 description = "A Language Server Protocol implementation for Ruff"; 69 homepage = "https://github.com/astral-sh/ruff-lsp"; 70 license = licenses.mit; 71 + mainProgram = "ruff-lsp"; 72 maintainers = with maintainers; [ figsoda kalekseev ]; 73 }; 74 }