From 5a996492d466523c352f5f4eccfa6edf11aef631 Mon Sep 17 00:00:00 2001 From: Lin Jian Date: Wed, 17 Jul 2024 20:26:44 +0800 Subject: [PATCH] emacsPackages.lsp-bridge: format using nixfmt-rfc-style --- .../manual-packages/lsp-bridge/default.nix | 54 ++++++++++--------- 1 file changed, 30 insertions(+), 24 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix index be44e8c8b7dd..f4cc07aef0a3 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix @@ -1,29 +1,32 @@ -{ 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; [ - epc - orjson - paramiko - rapidfuzz - setuptools - sexpdata - six - ]); + python = python3.withPackages ( + ps: with ps; [ + epc + orjson + paramiko + rapidfuzz + 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 + ]; }; }