From 7a4c4a39aff51e5fac3c2b8b7babbec2162ecf65 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 29 Oct 2025 14:32:34 +0000 Subject: [PATCH] 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 8a6db01b053a2587addc0fb2e01e0bd3109409ed..27bfcc863bf2502ad97b11a29f5ddb7d04b7ce77 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")