Merge pull request #285782 from augustebaum/patch-4

ruff-lsp: add `meta.mainProgram`
This commit is contained in:
Pol Dellaiera 2024-02-05 11:51:32 +01:00 committed by GitHub
commit b42f7df89d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,10 +64,11 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/astral-sh/ruff-lsp/releases/tag/v${version}";
description = "A Language Server Protocol implementation for Ruff";
homepage = "https://github.com/astral-sh/ruff-lsp";
changelog = "https://github.com/astral-sh/ruff-lsp/releases/tag/v${version}";
license = licenses.mit;
mainProgram = "ruff-lsp";
maintainers = with maintainers; [ figsoda kalekseev ];
};
}