guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 2eafc205fe696e51734815dd0cdee86f3d209409 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Jun 12 17:14:44 2025 +0100
gnu: go-github-com-a8m-envsubst: Update to 1.4.3. * gnu/packages/golang-xyz.scm (go-github-com-a8m-envsubst): Update to 1.4.3. [arguments] <go>: Use go-1.23. Change-Id: I7eca35b8c86e78285d6d00932dfc96441bfb0914 --- gnu/packages/golang-xyz.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 73786c5119..5c69b660d0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -670,7 +670,7 @@ Golang.") (define-public go-github-com-a8m-envsubst (package (name "go-github-com-a8m-envsubst") - (version "1.4.2") + (version "1.4.3") (source (origin (method git-fetch) @@ -679,10 +679,12 @@ Golang.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1mjs729g9nmalx25l4nn3p07amm4vsciqmdf0jbh2jwpy1zymz41")))) + (base32 "0pkvza3dr3bs2r8y8gfbckijcpl4w3llxd7zy8hw45zznynb273q")))) (build-system go-build-system) (arguments - (list #:import-path "github.com/a8m/envsubst")) + (list + #:go go-1.23 + #:import-path "github.com/a8m/envsubst")) (home-page "https://github.com/a8m/envsubst") (synopsis "Environment variables substitution for Go") (description