[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/20: gnu: Add emacs-lsp-booster.
From: |
guix-commits |
Subject: |
20/20: gnu: Add emacs-lsp-booster. |
Date: |
Tue, 5 Mar 2024 03:20:38 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit b7f0aad907d6c33c4ccb137190b7a6b710a7112b
Author: Suhail Singh <suhailsingh247@gmail.com>
AuthorDate: Tue Mar 5 00:45:19 2024 -0500
gnu: Add emacs-lsp-booster.
* gnu/packages/rust-apps.scm (emacs-lsp-booster): New variable.
Change-Id: If89f9941662ed01ddec578b220f69e6370775103
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/rust-apps.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 9e5c7d391f..7313cdef77 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -30,6 +30,7 @@
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
+;;; Copyright © 2024 Suhail Singh <suhail@bayesians.ca>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -71,6 +72,7 @@
#:use-module (gnu packages crates-windows)
#:use-module (gnu packages curl)
#:use-module (gnu packages documentation)
+ #:use-module (gnu packages emacs)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages haskell-xyz)
@@ -502,6 +504,43 @@ Features include:
@end enumerate\n")
(license license:gpl3)))
+(define-public emacs-lsp-booster
+ (package
+ (name "emacs-lsp-booster")
+ (version "0.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/blahgeek/emacs-lsp-booster")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xx32ms3mpi1clxf74mx7nanj0iw9qkmhi0a53fx8fkz0jw2fq8f"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list
+ #:cargo-inputs `(("rust-anyhow" ,rust-anyhow-1)
+ ("rust-clap" ,rust-clap-4)
+ ("rust-clap-verbosity-flag" ,rust-clap-verbosity-flag-2)
+ ("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-smallvec" ,rust-smallvec-1)
+ ("rust-env-logger" ,rust-env-logger-0.10))
+ #:cargo-development-inputs `(("rust-emacs" ,rust-emacs-0.18)
+ ("rust-tempfile" ,rust-tempfile-3))
+ #:install-source? #f))
+ (native-inputs (list emacs)) ; Not emacs-minimal
+ (home-page "https://github.com/blahgeek/emacs-lsp-booster")
+ (synopsis "Emacs LSP performance booster")
+ (description
+ "@code{emacs-lsp-booster} improves the performance of @code{lsp-mode} and
+@code{eglot} Emacs packages using a wrapper executable. See the home-page for
+configuration instructions.")
+ (license license:expat)))
+
(define-public eza
(package
(name "eza")
- branch master updated (3da49b1472 -> b7f0aad907), guix-commits, 2024/03/05
- 02/20: gnu: libtommath: Update to 1.2.1., guix-commits, 2024/03/05
- 05/20: guix: cpu: Update x86_64 CPUs., guix-commits, 2024/03/05
- 07/20: guix: cpu: Update aarch64 CPUs., guix-commits, 2024/03/05
- 09/20: gnu: Add rust-h3-0.0.2., guix-commits, 2024/03/05
- 12/20: gnu: Add rust-async-broadcast-0.6., guix-commits, 2024/03/05
- 13/20: gnu: Add rust-hickory-proto-0.24., guix-commits, 2024/03/05
- 06/20: guix: cpu: Autodetect the x86-64-v4 microarchitecture., guix-commits, 2024/03/05
- 03/20: gnu: font-gnu-unifont: Update to 15.1.05., guix-commits, 2024/03/05
- 08/20: gnu: git-annex: Update to 10.20240227., guix-commits, 2024/03/05
- 20/20: gnu: Add emacs-lsp-booster.,
guix-commits <=
- 18/20: gnu: Add aardvark-dns., guix-commits, 2024/03/05
- 17/20: gnu: Add rust-hickory-server-0.24., guix-commits, 2024/03/05
- 19/20: gnu: Add rust-clap-verbosity-flag-2., guix-commits, 2024/03/05
- 01/20: gnu: Remove libtommath-1.1., guix-commits, 2024/03/05
- 15/20: gnu: Add rust-hickory-recursor-0.24., guix-commits, 2024/03/05
- 14/20: gnu: Add rust-hickory-resolver-0.24., guix-commits, 2024/03/05
- 11/20: gnu: Add rust-event-listener-strategy-0.1., guix-commits, 2024/03/05
- 10/20: gnu: Add rust-h3-quinn-0.0.3., guix-commits, 2024/03/05
- 16/20: gnu: Add rust-hickory-client-0.24., guix-commits, 2024/03/05
- 04/20: gnu: gcc@11: fix 'compiler-cpu-architectures' property., guix-commits, 2024/03/05