all messages for Guix-related lists mirrored at yhetil.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 01/18] gnu: Add go-github-com-a8m-envsubst.
Date: Fri, 28 Jul 2023 17:07:38 +0800	[thread overview]
Message-ID: <42d0c0bb6e29956e755a3fb1982eb5c6ae3c2729.1690534227.git.hako@ultrarare.space> (raw)
In-Reply-To: <cover.1690534227.git.hako@ultrarare.space>

* gnu/packages/golang.scm (go-github-com-a8m-envsubst): New variable.
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index ea6aadbe80..a6b20a5446 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1041,6 +1041,28 @@ (define-public go-0xacab-org-leap-shapeshifter
 filtering devices.")
       (license license:bsd-2))))
 
+(define-public go-github-com-a8m-envsubst
+  (package
+    (name "go-github-com-a8m-envsubst")
+    (version "1.4.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/a8m/envsubst")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1mjs729g9nmalx25l4nn3p07amm4vsciqmdf0jbh2jwpy1zymz41"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/a8m/envsubst"))
+    (home-page "https://github.com/a8m/envsubst")
+    (synopsis "Environment variables substitution for Go")
+    (description
+     "This package provides a library for environment variables substitution.")
+    (license license:expat)))
+
 (define-public go-github-com-agext-levenshtein
   (package
     (name "go-github-com-agext-levenshtein")
-- 
2.41.0





  reply	other threads:[~2023-07-28  9:11 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 ` Hilton Chain via Guix-patches via [this message]
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   ` [bug#64916] [PATCH v2 19/23] gnu: Add go-github-com-pelletier-go-toml-v2 Hilton Chain via Guix-patches via
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

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

  git send-email \
    --in-reply-to=42d0c0bb6e29956e755a3fb1982eb5c6ae3c2729.1690534227.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 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.