From 5cb50768a678844d4485f1716672502a8aa7be33 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 10 Oct 2025 12:44:46 +0100 Subject: [PATCH] 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] : Use default (go-1.24). : 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 119d24513cf473788ba9259d73c95b65e9f4cebe..b6065d9e5e09d32e227d48279d46d04dfc3f852d 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"))) ;Go@1.24 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