guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7a4c4a39aff51e5fac3c2b8b7babbec2162ecf65
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Oct 29 14:32:34 2025 +0000

    gnu: Add go-modernc-org-goabi0.
    
    * gnu/packages/golang-xyz.scm (go-modernc-org-goabi0): New variable.
    
    Change-Id: Id290bc65264f7257d6ad71b4ed8f197c6e7a6c65
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 8a6db01b05..27bfcc863b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24668,6 +24668,30 @@ Backus–Naur form, EBNF} grammars.")
            go-modernc-org-strutil
            go-modernc-org-token))))
 
+(define-public go-modernc-org-goabi0
+  (package
+    (name "go-modernc-org-goabi0")
+    (version "0.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://gitlab.com/cznic/goabi0";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1nf3mcql5vjfymhy7l867zan2ynjg3wc3jplh4k1gby077h7jb3h"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "modernc.org/goabi0"))
+    (home-page "https://gitlab.com/cznic/goabi0";)
+    (synopsis "Helpers for generating Go assembler ABI0 code")
+    (description
+     "This package provides helpers for generating Go assembler
+@url{https://go.dev/doc/asm, ABI0} code.")
+    (license license:bsd-3)))
+
 (define-public go-modernc-org-golex
   (package
     (name "go-modernc-org-golex")

Reply via email to