guix-patches
[Top][All Lists]
Advanced

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

[bug#57456] [PATCH] gnu: Add neovim-packer.


From: gyara
Subject: [bug#57456] [PATCH] gnu: Add neovim-packer.
Date: Sun, 28 Aug 2022 13:16:21 +0900

---
This patch add neovim-packer, a neovim plugin manager to guix.

 gnu/packages/vim.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index a07c681cb3..d1d8588562 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -639,6 +639,34 @@ (define-public editorconfig-vim
 editors.")
     (license license:bsd-2)))
 
+(define-public neovim-packer
+  (let ((commit "3a9f9801f683946b9f1047d8f4bf9946c29e927d")
+        (revision "1"))
+    (package
+      (name "neovim-packer")
+      (version (git-version "0.0.0" revision commit))
+      (home-page "https://github.com/wbthomason/packer.nvim";)
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/wbthomason/packer.nvim.git";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1xn08z3a21mgfvp5i1nv57jnldwxwnl5nkryiff3zc99b1mizigp"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("lua"
+                           "share/nvim/site/pack/packer/start/packer.nvim/")
+                          ("doc"
+                           "share/nvim/site/pack/packer/start/packer.nvim/"))))
+      (synopsis "Neovim Plugin manager")
+      (description
+       "A use-package inspired plugin manager for Neovim. Uses native packages,
+      supports Luarocks dependencies, written in Lua, allows for expressive 
config")
+      (license license:expat))))
+
 (define-public neovim-syntastic
   (package
     (inherit vim-syntastic)
-- 
2.37.2






reply via email to

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