guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3a0d07ee55b7244f12c1a413cfa3180f9abe2a39
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri May 30 11:57:04 2025 +0900
gnu: Add go-github-com-motemen-go-quickfix.
* gnu/packages/golang-xyz.scm (go-github-com-motemen-go-quickfix): New
variable.
Change-Id: I6e9b27afbccda72eb219a21c50a2ab4825d03832
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 9c365eb22d..c835c55ee3 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12208,6 +12208,32 @@ values pointed to. Unexported field values are not
copied.")
"This package provides simple colorized console logger for golang.")
(license license:expat)))
+(define-public go-github-com-motemen-go-quickfix
+ (package
+ (name "go-github-com-motemen-go-quickfix")
+ (version "0.0.0-20250224075427-39bb724d71b7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/motemen/go-quickfix")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0j14k6kfzvfn8v21gf2ssaypicrwb4pvh7yzfa5m1jcc9581j2ad"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:go go-1.23 ;minimum required version
+ #:import-path "github.com/motemen/go-quickfix"))
+ (propagated-inputs (list go-golang-org-x-tools))
+ (home-page "https://github.com/motemen/go-quickfix")
+ (synopsis "Go ASTs fixing library")
+ (description
+ "The @code{quickfix} Go package provides functions for fixing Go ASTs
+that are well typed but @samp{go build} refuses to build.")
+ (license license:expat)))
+
(define-public go-github-com-mreiferson-go-options
(package
(name "go-github-com-mreiferson-go-options")