unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Hilton Chain via Guix-patches via <guix-patches@gnu.org>
To: 64916@debbugs.gnu.org
Cc: Hilton Chain <hako@ultrarare.space>
Subject: [bug#64916] [PATCH v2 19/23] gnu: Add go-github-com-pelletier-go-toml-v2.
Date: Sat, 29 Jul 2023 01:20:05 +0800	[thread overview]
Message-ID: <d87b7e89c0ffcdcb890ed7233dd4bd69995eed12.1690564476.git.hako@ultrarare.space> (raw)
In-Reply-To: <cover.1690564476.git.hako@ultrarare.space>

* gnu/packages/golang.scm (go-github-com-pelletier-go-toml-v2): New variable.
---
 gnu/packages/golang.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 60f9d79177..1cb1c8f304 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5235,6 +5235,26 @@ (define-public go-github-com-pelletier-go-toml
     (description "Go library for the TOML configuration language")
     (license license:expat)))
 
+(define-public go-github-com-pelletier-go-toml-v2
+  (package
+    (inherit go-github-com-pelletier-go-toml)
+    (name "go-github-com-pelletier-go-toml-v2")
+    (version "2.0.8")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/pelletier/go-toml")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "04lbwawyvygzzy5w4c9bs8jywr1ypm35zb4cp477gxl1iiqvzk54"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/pelletier/go-toml/v2"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))))
+
 (define-public go-github-com-subosito-gotenv
   (package
     (name "go-github-com-subosito-gotenv")
-- 
2.41.0





  parent reply	other threads:[~2023-07-28 17:52 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-28  9:05 [bug#64916] [PATCH 00/18] gnu: Add yq Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 01/18] gnu: Add go-github-com-a8m-envsubst Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 02/18] gnu: Add go-github-com-hexops-gotextdiff Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 03/18] gnu: go-github-com-alecthomas-repr: Update to 0.2.0 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 04/18] gnu: Add go-github-com-alecthomas-assert-v2 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 05/18] gnu: Add go-github-com-alecthomas-participle-v2 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 06/18] gnu: Add go-github-com-dimchansky-utfbom Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 07/18] gnu: Add go-github-com-elliotchance-orderedmap Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 08/18] gnu: go-github-com-mattn-go-isatty: Update to 0.0.17 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 09/18] gnu: go-github-com-mattn-go-colorable: Update to 0.1.13 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 10/18] gnu: go-github-com-fatih-color: Update to 1.15.0 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 11/18] gnu: go-github-com-goccy-go-json: Update to 0.10.2 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 12/18] gnu: Add go-github-com-jinzhu-copier Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 13/18] gnu: go-github-com-magiconair-properties: Update to 1.8.7 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 14/18] gnu: Add go-github-com-pelletier-go-toml-v2 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 15/18] gnu: go-github-com-spf13-cobra: Update to 1.7.0 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 16/18] gnu: Add go-gopkg-in-op-go-logging-v1 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 17/18] gnu: Add go-github-com-mikefarah-yq-v4 Hilton Chain via Guix-patches via
2023-07-28  9:07 ` [bug#64916] [PATCH 18/18] gnu: Add yq Hilton Chain via Guix-patches via
2023-07-28 17:16 ` [bug#64916] [PATCH v2 00/23] " Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 01/23] gnu: Add go-github-com-a8m-envsubst Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 02/23] gnu: Add go-github-com-hexops-gotextdiff Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 03/23] gnu: go-github-com-alecthomas-repr: Update to 0.2.0 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 04/23] gnu: Add go-github-com-alecthomas-assert-v2 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 05/23] gnu: Add go-github-com-alecthomas-participle-v2 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 06/23] gnu: Add go-github-com-dimchansky-utfbom Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 07/23] gnu: Add go-github-com-elliotchance-orderedmap Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 08/23] gnu: go-github-com-mattn-go-isatty: Update to 0.0.17 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 09/23] gnu: go-github-com-mattn-go-colorable: Update to 0.1.13 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 10/23] gnu: go-github-com-fatih-color: Update to 1.15.0 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 11/23] gnu: go-github-com-goccy-go-json: Update to 0.10.2 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 12/23] gnu: go-github-com-go-playground-universal-translator: Update to 0.18.0 Hilton Chain via Guix-patches via
2023-07-28 17:19   ` [bug#64916] [PATCH v2 13/23] gnu: go-github-com-leodido-go-urn: Update to 1.2.1 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 14/23] gnu: Add go-github-com-go-playground-assert-v2 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 15/23] gnu: Add go-github-com-go-playground-validator-v10 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 16/23] gnu: go-github-com-goccy-yaml: Update to 1.11.0 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 17/23] gnu: Add go-github-com-jinzhu-copier Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 18/23] gnu: go-github-com-magiconair-properties: Update to 1.8.7 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` Hilton Chain via Guix-patches via [this message]
2023-07-28 17:20   ` [bug#64916] [PATCH v2 20/23] gnu: go-github-com-spf13-cobra: Update to 1.7.0 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 21/23] gnu: Add go-gopkg-in-op-go-logging-v1 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 22/23] gnu: Add go-github-com-mikefarah-yq-v4 Hilton Chain via Guix-patches via
2023-07-28 17:20   ` [bug#64916] [PATCH v2 23/23] gnu: Add yq Hilton Chain via Guix-patches via
2024-02-16 14:26 ` bug#64916: [PATCH 00/18] " Sharlatan Hellseher

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=d87b7e89c0ffcdcb890ed7233dd4bd69995eed12.1690564476.git.hako@ultrarare.space \
    --to=guix-patches@gnu.org \
    --cc=64916@debbugs.gnu.org \
    --cc=hako@ultrarare.space \
    /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).