diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-05-30 11:57:04 +0900 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-10 12:31:49 +0100 |
commit | 3a0d07ee55b7244f12c1a413cfa3180f9abe2a39 (patch) | |
tree | 4cf8aa12a7a7e409f00933f70f2813d620232528 | |
parent | 4534b1a2be021fdc9afbda7cda8657b7a57d037e (diff) |
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 <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
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") |