diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2026-01-05 16:43:48 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 21:34:01 +0100 |
| commit | 7f9082b9865fbcff04cff96ee993facf13e79c11 (patch) | |
| tree | 662c771256d3248fbc46a56f74877cfd2003e731 | |
| parent | 63c51426c9261ea096ebc67fc735a1be85974514 (diff) | |
gnu: Add go-github-com-go-xmlfmt-xmlfmt.
* gnu/packages/golang-check.scm (go-github-com-go-xmlfmt-xmlfmt): New
variable.
Relates-to: https://codeberg.org/guix/guix/pulls/5417
Change-Id: Ib5315a21f9303350fce5a4bbec20dd4f109821e6
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-check.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 218b133909..ceb48568d8 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -1251,6 +1251,29 @@ kept in fixtures files. Before the execution of every test, the test database is cleaned and the fixture data is loaded into the database.") (license license:expat))) +(define-public go-github-com-go-xmlfmt-xmlfmt + (package + (name "go-github-com-go-xmlfmt-xmlfmt") + (version "1.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-xmlfmt/xmlfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cglrwmpg0lb7cnyvdz8js52h07rcvka7y9abksk9p5ajxj5rp1s")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/go-xmlfmt/xmlfmt")) + (home-page "https://github.com/go-xmlfmt/xmlfmt") + (synopsis "Go XML Formatter") + (description + "The Go XML Formatter, xmlfmt, will format the XML string in a readable way.") + (license license:expat))) + ;; XXX: This repository has been archived by the owner ;; on May 9, 2021. It is now read-only. It's only used ;; by go-github-com-golang-gddo. Consider to remove when nothing |
