diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-03-01 18:32:41 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-03-01 18:35:24 +0530 |
| commit | 76739904202a362ffaa3e9e2ab99a55889419744 (patch) | |
| tree | e70a4889bed8895fa8789dabb1fc5aecf19fcb69 /modules/kakoune/kakoune-lsp.nix | |
| parent | 241e40ad8023922be73213a518c9624f737de066 (diff) | |
| download | nixos-config-76739904202a362ffaa3e9e2ab99a55889419744.tar.gz nixos-config-76739904202a362ffaa3e9e2ab99a55889419744.zip | |
Tmux + kakoune package update
Diffstat (limited to 'modules/kakoune/kakoune-lsp.nix')
| -rw-r--r-- | modules/kakoune/kakoune-lsp.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/kakoune/kakoune-lsp.nix b/modules/kakoune/kakoune-lsp.nix new file mode 100644 index 0000000..92d1998 --- /dev/null +++ b/modules/kakoune/kakoune-lsp.nix @@ -0,0 +1,19 @@ +{ lib, pkgs }: +with pkgs; +rustPlatform.buildRustPackage rec { + pname = "kakoune-lsp"; + version = "19.0.1-local.0"; + + src = fetchFromGitHub { + owner = "kakoune-lsp"; + repo = "kakoune-lsp"; + rev = "5ac69fde4222fa458908ff0c17d3aa429c74e28a"; # 28 Feb 2026 + hash = "sha256-PjYPhzMoT8rE2XGI/O9SAcksv2XGyk682IbHJW5vusc="; + }; + + cargoHash = "sha256-nwxZwyT9sNoZuvvg/YJFlVshe6i+W9avmquq9iXmFVM="; + + meta = { + mainProgram = "kak-lsp"; + }; +} |
