1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-minio-xxml.

* gnu/packages/golang-xyz.scm (go-github-com-minio-xxml): New variable.

Change-Id: I2d584ac274d879cbea80349f1e25f978ed800a10
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Patrick Norton
2025-11-24 15:57:25 -05:00
committed by Sharlatan Hellseher
parent 89fe443c48
commit e8a2f30bdf

View File

@@ -15473,6 +15473,30 @@ requests. Browse requests are not supported yet.")
"The datacounter package provides counters for Go readers and writers.")
(license license:expat)))
(define-public go-github-com-minio-xxml
(package
(name "go-github-com-minio-xxml")
(version "0.0.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/minio/xxml")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1yljar0sqgrp4d6bngs9714i5mvn99vyn0j0vdv2b4g598c87dy5"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/minio/xxml"))
(home-page "https://github.com/minio/xxml")
(synopsis "XML 1.0 parser with extended control-character support")
(description
"This package implements a simple XML 1.0 parser that understands XML name
spaces, along with extended support for control characters.")
(license license:bsd-3)))
(define-public go-github-com-mistifyio-go-zfs-v3
(package
(name "go-github-com-mistifyio-go-zfs-v3")