guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 0f4e593106e5c0bad9e45d14b93269fc58217a8d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 10 12:44:46 2025 +0100

    gnu: go-github-com-twitchyliquid64-golang-asm: Update to 0.15.1.
    
    * gnu/packages/golang-build.scm
    (go-github-com-twitchyliquid64-golang-asm): Update to 0.15.1.
    [arguments] <go>: Use default (go-1.24).
    <test-flags>: Don't vet during tests.
    
    Change-Id: I2147d8c114f0d1bac59826f5c71bd46a7d40a56c
---
 gnu/packages/golang-build.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 119d24513c..b6065d9e5e 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -478,16 +478,17 @@ primitives in Go.")
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/twitchyliquid64/golang-asm";)
-             (commit (string-append "v" version))))
+              (url "https://github.com/twitchyliquid64/golang-asm";)
+              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "1akw41i0snxqw9lqzmnn4gx6hd5js5dr1vmfkm49wxans4k14vw4"))))
     (build-system go-build-system)
     (arguments
      (list
-      #:go go-1.23
-      #:import-path "github.com/twitchyliquid64/golang-asm"))
+      #:import-path "github.com/twitchyliquid64/golang-asm"
+      #:test-flags
+      #~(list "-vet=off")))   ;[email protected] forces vet, but tests are not ready yet.
     (home-page "https://github.com/twitchyliquid64/golang-asm";)
     (synopsis "Assembler from the Go compiler, in library form")
     (description

Reply via email to