emacs-lsp-booster: init at v0.1.1

This commit is contained in:
Icy-Thought 2024-01-09 21:10:41 +01:00
parent 8736250fc2
commit 4ee16f60a7
No known key found for this signature in database
GPG Key ID: B593E438DDAB3C66

View File

@ -0,0 +1,29 @@
{
lib,
rustPlatform,
fetchFromGitHub,
emacs,
}:
rustPlatform.buildRustPackage rec {
pname = "emacs-lsp-booster";
version = "0.1.1";
src = fetchFromGitHub {
owner = "blahgeek";
repo = "emacs-lsp-booster";
rev = "v${version}";
hash = "sha256-0roQxzQrxcmS2RHQPguBRL76xSErf2hVjuJEyFr5MeM=";
};
cargoHash = "sha256-quqhAMKsZorYKFByy2bojGgYR2Ps959Rg/TP8SnwbqM=";
nativeCheckInputs = [emacs]; # tests/bytecode_test
meta = with lib; {
description = "Emacs LSP performance booster";
homepage = "https://github.com/blahgeek/emacs-lsp-booster";
license = licenses.mit;
maintainers = with maintainers; [icy-thought];
mainProgram = "emacs-lsp-booster";
};
}