guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#57389] [PATCH 23/29] gnu: Add neovim-lspsaga.


From: (
Subject: [bug#57389] [PATCH 23/29] gnu: Add neovim-lspsaga.
Date: Wed, 24 Aug 2022 18:08:50 +0100

* gnu/packages/vim.scm (neovim-lspsaga): New variables.
---
 gnu/packages/vim.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 61e1d9afac..074b1ef541 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1821,3 +1821,29 @@ (define-public neovim-lspconfig
      "This package provides the canonical server configuration for
 Neovim's builtin LSP client.")
    (license license:asl2.0)))
+
+(define-public neovim-lspsaga
+  (let ((commit "9ec569a49aa7ff265764081acff9e5da839c13fe")
+        (revision "0"))
+    (package
+      (name "neovim-lspsaga")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/tami5/lspsaga.nvim";)
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "1h4r63na7n18pnfbl0n3x7pkfm1pd01zz2h0py6pxd1az6il9dng"))))
+      (build-system copy-build-system)
+      (arguments
+       (list #:install-plan
+             #~'(("lua" "share/nvim/site/pack/guix/start/lspsaga/")
+                 ("plugin" "share/nvim/site/pack/guix/start/lspsaga/"))))
+      (home-page "https://github.com/tami5/lspsaga.nvim";)
+      (synopsis "User interface for Neovim LSP")
+      (description
+       "This package provides a fancy user interface for the Neovim
+language server protocol client.")
+      (license license:expat))))
-- 
2.37.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]