unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Nathan Merkley <nathanmerkley@gmail.com>
To: 67192@debbugs.gnu.org
Cc: Nathan Merkley <nathanmerkley@gmail.com>
Subject: [bug#67192] [PATCH 5/6] * gnu/packages/vim.scm (vim-zig): New variable
Date: Tue, 14 Nov 2023 17:21:44 -0700	[thread overview]
Message-ID: <3fccefdb0b8b017e6bb286e65068245289f91ca6.1700006719.git.nathanmerkley@gmail.com> (raw)
In-Reply-To: <cover.1700006719.git.nathanmerkley@gmail.com>

Change-Id: I90fa7377fa15a95553960aabef041ce31ce97650
---
 gnu/packages/vim.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 3f8e673b69..054c23bc92 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1535,3 +1535,30 @@ (define-public vim-mundo
       (description "A Vim plugin to visualize the Vim undo tree")
       (home-page "https://simnalamburt.github.io/vim-mundo/")
       (license license:gpl2))))
+
+(define-public vim-zig
+  (let ((commit "54c216e5306a5c3878a60596aacb94dca8652ab9")
+        (revision "1"))
+    (package
+      (name "vim-zig")
+      (version (string-append "0.0.0-" revision "."
+                              (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/ziglang/zig.vim")
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32 "1nxwjyn3ps3c2abffai5cql3czl4kah4cin0g30damy1k99ypncb"))))
+      (build-system vim-build-system)
+      (arguments
+       (list
+        #:plugin-name "zig.vim"))
+      (synopsis "Vim configuration for Zig")
+      (description
+       "File detection and syntax highlighting for the zig programming
+language.")
+      (home-page "https://github.com/ziglang/zig.vim")
+      (license license:expat))))
-- 
2.41.0





WARNING: multiple messages have this Message-ID (diff)
From: Nathan Merkley <nathanmerkley@gmail.com>
To: 67186@debbugs.gnu.org
Cc: Nathan Merkley <nathanmerkley@gmail.com>
Subject: [bug#67186] [PATCH 5/6] * gnu/packages/vim.scm (vim-zig): New variable
Date: Thu,  7 Dec 2023 09:54:08 -0700	[thread overview]
Message-ID: <3fccefdb0b8b017e6bb286e65068245289f91ca6.1700006719.git.nathanmerkley@gmail.com> (raw)
Message-ID: <20231207165408.O3my9LS2buElKnmydboMTUzfT7pmOmK5xM45PEFglW0@z> (raw)
In-Reply-To: <cover.1700006719.git.nathanmerkley@gmail.com>

Change-Id: I90fa7377fa15a95553960aabef041ce31ce97650
---
 gnu/packages/vim.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 3f8e673b69..054c23bc92 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1535,3 +1535,30 @@ (define-public vim-mundo
       (description "A Vim plugin to visualize the Vim undo tree")
       (home-page "https://simnalamburt.github.io/vim-mundo/")
       (license license:gpl2))))
+
+(define-public vim-zig
+  (let ((commit "54c216e5306a5c3878a60596aacb94dca8652ab9")
+        (revision "1"))
+    (package
+      (name "vim-zig")
+      (version (string-append "0.0.0-" revision "."
+                              (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/ziglang/zig.vim")
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32 "1nxwjyn3ps3c2abffai5cql3czl4kah4cin0g30damy1k99ypncb"))))
+      (build-system vim-build-system)
+      (arguments
+       (list
+        #:plugin-name "zig.vim"))
+      (synopsis "Vim configuration for Zig")
+      (description
+       "File detection and syntax highlighting for the zig programming
+language.")
+      (home-page "https://github.com/ziglang/zig.vim")
+      (license license:expat))))
-- 
2.41.0





  parent reply	other threads:[~2023-11-15  6:43 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-15  0:21 [bug#67186] [PATCH 0/6] *** Add vim plugins *** Nathan Merkley
2023-11-15  0:21 ` [bug#67187] [PATCH 1/6] * gnu/packages/vim.scm (vim-commentary): New variable Nathan Merkley
2023-12-07 16:54   ` [bug#67186] " Nathan Merkley
2023-11-15  0:21 ` [bug#67188] [PATCH 2/6] * gnu/packages/vim.scm (vim-guile): " Nathan Merkley
2023-12-07 16:54   ` [bug#67186] " Nathan Merkley
2023-11-15  0:21 ` [bug#67189] [PATCH 3/6] * gnu/packages/vim.scm (vim-dhall-vim): " Nathan Merkley
2023-12-07 16:54   ` [bug#67186] " Nathan Merkley
2023-11-15  0:21 ` [bug#67191] [PATCH 4/6] * gnu/packages/vim.scm (vim-mundo): " Nathan Merkley
2023-12-07 16:54   ` [bug#67186] " Nathan Merkley
2023-11-15  0:21 ` Nathan Merkley [this message]
2023-12-07 16:54   ` [bug#67186] [PATCH 5/6] * gnu/packages/vim.scm (vim-zig): " Nathan Merkley
2023-11-15  0:21 ` [bug#67190] [PATCH 6/6] * gnu/packages/vim.scm (vim-plantuml-syntax): " Nathan Merkley
2023-12-07 16:54   ` [bug#67186] " Nathan Merkley

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3fccefdb0b8b017e6bb286e65068245289f91ca6.1700006719.git.nathanmerkley@gmail.com \
    --to=nathanmerkley@gmail.com \
    --cc=67192@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).