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

Previous Next

Package: guix-patches;

Reported by: gyara <me <at> gyara.moe>

Date: Sun, 28 Aug 2022 04:18:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: gyara <me <at> gyara.moe>
Subject: bug#57456: closed (Re: bug#57456: [PATCH] gnu: Add neovim-packer.)
Date: Tue, 06 Sep 2022 14:34:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

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

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 57456 <at> debbugs.gnu.org.

-- 
57456: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57456
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org>
To: gyara <me <at> gyara.moe>
Cc: 57456-done <at> debbugs.gnu.org
Subject: Re: bug#57456: [PATCH] gnu: Add neovim-packer.
Date: Tue, 06 Sep 2022 16:32:56 +0200
Hi,

gyara <me <at> gyara.moe> skribis:

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

I tweaked the commit log and applied it, thanks!

Ludo’.

[Message part 3 (message/rfc822, inline)]
From: gyara <me <at> gyara.moe>
To: guix-patches <at> gnu.org
Cc: gyara <me <at> gyara.moe>
Subject: [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




This bug report was last modified 2 years and 256 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.