From cd3d979b0c65ba2d84d2a2d665045d9d237ad26b Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 12 Jun 2025 17:14:44 +0100 Subject: [PATCH] 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] : 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 21cb51a1ff..8147129f5d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -672,7 +672,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) @@ -681,10 +681,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