1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: Add go-github-com-mmcloughlin-avo.

* gnu/packages/golang-build.scm (go-github-com-mmcloughlin-avo): New variable.

Change-Id: I8ebdd952a7dbcf18f151017dedd0261e69e212ae
This commit is contained in:
Sharlatan Hellseher 2024-12-22 01:15:40 +00:00
parent 616afc35a7
commit 9079175f05
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -305,6 +305,34 @@ replace a file or symbolic link.")
1.1: Authentication and Security Services.")
(license license:bsd-3)))
(define-public go-github-com-mmcloughlin-avo
(package
(name "go-github-com-mmcloughlin-avo")
(version "0.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mmcloughlin/avo")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0lv771lb9nxaxqiz7l83k35rc82588xihixxrik6yapg13v675mp"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/mmcloughlin/avo"))
(propagated-inputs
(list go-golang-org-x-arch
go-golang-org-x-sys
go-golang-org-x-tools))
(home-page "https://github.com/mmcloughlin/avo")
(synopsis "Generate x86 Assembly with Go")
(description
"The avo package presents a familiar assembly-like interface that
simplifies development without sacrificing performance.")
(license license:bsd-3)))
;; XXX: This repository has been archived by the owner on Dec 1, 2021. It is
;; now read-only.
(define-public go-github-com-pkg-errors