all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#51603] [PATCH] gnu: Add vim-nerdtree.
@ 2021-11-05  2:42 Foo Chuan Wei
  2021-11-18  7:04 ` [bug#51603] [PATCH v2] " Foo Chuan Wei
  0 siblings, 1 reply; 3+ messages in thread
From: Foo Chuan Wei @ 2021-11-05  2:42 UTC (permalink / raw)
  To: 51603

* gnu/packages/vim.scm (vim-nerdtree): New variable.
---
 gnu/packages/vim.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 1abfffbce2..3f87c18631 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1325,3 +1325,33 @@ the class they are defined in.")
 operations and styles which are invoked via key mappings and a menu.  These
 operations are available for most filetypes.")
       (license license:cc0))))
+
+(define-public vim-nerdtree
+  (package
+    (name "vim-nerdtree")
+    (version "6.10.16")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/preservim/nerdtree")
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+         (base32 "1si8qla86ng8cffbmfrk9gss0i3912yw0f1ph4bsiq0kk837lccp"))))
+    (build-system copy-build-system)
+    (arguments
+      '(#:install-plan
+        '(("autoload" "share/vim/vimfiles/")
+          ("doc" "share/vim/vimfiles/")
+          ("lib" "share/vim/vimfiles/")
+          ("nerdtree_plugin" "share/vim/vimfiles/")
+          ("plugin" "share/vim/vimfiles/")
+          ("syntax" "share/vim/vimfiles/"))))
+    (home-page "https://github.com/preservim/nerdtree")
+    (synopsis "Tree explorer plugin for Vim")
+    (description
+      "The NERDTree is a file system explorer for the Vim editor.  Using this
+plugin, users can visually browse complex directory hierarchies, quickly open
+files for reading or editing, and perform basic file system operations.")
+    (license license:wtfpl2)))

base-commit: 575fcd3045ff1649e5319b6701ff9e28e97793e0
-- 
2.25.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#51603] [PATCH v2] gnu: Add vim-nerdtree.
  2021-11-05  2:42 [bug#51603] [PATCH] gnu: Add vim-nerdtree Foo Chuan Wei
@ 2021-11-18  7:04 ` Foo Chuan Wei
  2021-12-01 15:52   ` bug#51603: [PATCH] " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Foo Chuan Wei @ 2021-11-18  7:04 UTC (permalink / raw)
  To: 51603

* gnu/packages/vim.scm (vim-nerdtree): New variable.
---
 gnu/packages/vim.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 1abfffbce2..c2c913ba5f 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1297,6 +1297,36 @@ by their scope.  This means that for example methods in C++ are displayed under
 the class they are defined in.")
     (license license:vim)))
 
+(define-public vim-nerdtree
+  (package
+    (name "vim-nerdtree")
+    (version "6.10.16")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/preservim/nerdtree")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1si8qla86ng8cffbmfrk9gss0i3912yw0f1ph4bsiq0kk837lccp"))))
+    (build-system copy-build-system)
+    (arguments
+     '(#:install-plan
+       '(("autoload" "share/vim/vimfiles/")
+         ("doc" "share/vim/vimfiles/")
+         ("lib" "share/vim/vimfiles/")
+         ("nerdtree_plugin" "share/vim/vimfiles/")
+         ("plugin" "share/vim/vimfiles/")
+         ("syntax" "share/vim/vimfiles/"))))
+    (home-page "https://github.com/preservim/nerdtree")
+    (synopsis "Tree explorer plugin for Vim")
+    (description
+     "The NERDTree is a file system explorer for the Vim editor.  Using this
+plugin, users can visually browse complex directory hierarchies, quickly open
+files for reading or editing, and perform basic file system operations.")
+    (license license:wtfpl2)))
+
 (define-public vim-nerdcommenter
   (let ((commit "a65465d321f2f8a74b2ffa540b9b87563f7e12e8")
         (revision "1"))

base-commit: 7537ec816ffe0aaa6677c53604ac12fe9d9ca250
-- 
2.25.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#51603: [PATCH] gnu: Add vim-nerdtree.
  2021-11-18  7:04 ` [bug#51603] [PATCH v2] " Foo Chuan Wei
@ 2021-12-01 15:52   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2021-12-01 15:52 UTC (permalink / raw)
  To: Foo Chuan Wei; +Cc: 51603-done

Hi,

Foo Chuan Wei <chuanwei.foo@hotmail.com> skribis:

> * gnu/packages/vim.scm (vim-nerdtree): New variable.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-12-01 16:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-05  2:42 [bug#51603] [PATCH] gnu: Add vim-nerdtree Foo Chuan Wei
2021-11-18  7:04 ` [bug#51603] [PATCH v2] " Foo Chuan Wei
2021-12-01 15:52   ` bug#51603: [PATCH] " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.