From 4a55ebbfcae39103fdbe1b39602522ef3030baba Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 26 Feb 2026 13:15:32 +0000 Subject: [PATCH] gnu: gomacro: Update to 0.0.0-20251011163654-53dd3d49f67b. * gnu/packages/golang-apps.scm (gomacro): Update to 0.0.0-20251011163654-53dd3d49f67b. [inputs]: Remove go-golang-org-x-tools, go-github-com-peterh-liner, and go-github-com-mattn-go-runewidth. [native-inputs]: Add go-golang-org-x-tools, go-github-com-peterh-liner, and go-github-com-mattn-go-runewidth. Change-Id: I3730b3567fe455b95b054a6bc79abacb79b23475 --- gnu/packages/golang-apps.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/golang-apps.scm b/gnu/packages/golang-apps.scm index 93dd03cdb4..669d250c8d 100644 --- a/gnu/packages/golang-apps.scm +++ b/gnu/packages/golang-apps.scm @@ -182,7 +182,7 @@ definitions in Go programs.") (define-public gomacro (package (name "gomacro") - (version "0.0.0-20250712144029-20095acfbf18") + (version "0.0.0-20251011163654-53dd3d49f67b") (source (origin (method git-fetch) @@ -191,7 +191,7 @@ definitions in Go programs.") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1w7gcrympnxwrscmhwahx3anm2yp1ali8xqh1s23q93gyznzcpj5")))) + (base32 "0sr7ybqbynihq9h4pknywg2na15j4l9x11jfrd45dw52rqp2mlnw")))) (build-system go-build-system) (arguments (list @@ -213,8 +213,10 @@ definitions in Go programs.") (for-each delete-file (find-files "src/github.com/cosmos72/gomacro/go/types" "_test\\.go(\\.off)?$"))))))) - (inputs (list go-golang-org-x-tools go-github-com-peterh-liner - go-github-com-mattn-go-runewidth)) + (native-inputs + (list go-golang-org-x-tools + go-github-com-peterh-liner + go-github-com-mattn-go-runewidth)) (home-page "https://github.com/cosmos72/gomacro") (synopsis "Interactive Go interpreter and debugger with generics and macros")