Unverified Commit 5a996492 authored by Lin Jian's avatar Lin Jian
Browse files

emacsPackages.lsp-bridge: format using nixfmt-rfc-style

parent 8386a426
Loading
Loading
Loading
Loading
+30 −24
Original line number Diff line number Diff line
{ lib
, python3
, melpaBuild
, fetchFromGitHub
, substituteAll
, acm
, markdown-mode
, git
, go
, gopls
, pyright
, ruff
, tempel
, unstableGitUpdater
{
  lib,
  python3,
  melpaBuild,
  fetchFromGitHub,
  substituteAll,
  acm,
  markdown-mode,
  git,
  go,
  gopls,
  pyright,
  ruff,
  tempel,
  unstableGitUpdater,
}:

let
  python = python3.withPackages (ps: with ps; [
  python = python3.withPackages (
    ps: with ps; [
      epc
      orjson
      paramiko
@@ -23,7 +25,8 @@ let
      setuptools
      sexpdata
      six
  ]);
    ]
  );
in
melpaBuild {
  pname = "lsp-bridge";
@@ -89,6 +92,9 @@ melpaBuild {
    description = "Blazingly fast LSP client for Emacs";
    homepage = "https://github.com/manateelazycat/lsp-bridge";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ fxttr kira-bruneau ];
    maintainers = with lib.maintainers; [
      fxttr
      kira-bruneau
    ];
  };
}