mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 03:37:26 +00:00
emacs-lsp-booster: init at v0.1.1
This commit is contained in:
parent
8736250fc2
commit
4ee16f60a7
29
pkgs/by-name/em/emacs-lsp-booster/package.nix
Normal file
29
pkgs/by-name/em/emacs-lsp-booster/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user