Unverified Commit b42f7df8 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #285782 from augustebaum/patch-4

ruff-lsp: add `meta.mainProgram`
parents ca2efd00 9aab3699
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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 ];
  };
}