sharlatan pushed a commit to branch go-team
in repository guix.

commit 89a14f75fc34bc92128143391ebb31da9b09c3c0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 23 17:20:29 2025 +0000

    gnu: Add go-github-com-clbanning-mxj-v2.
    
    * gnu/packages/golang-xyz.scm (go-github-com-clbanning-mxj-v2): New 
variable.
    
    Change-Id: Ib1332703a10683ddffe2515c31abddded0a28d5e
---
 gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 61cc919002..5fc38079be 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2965,6 +2965,35 @@ levels that works by wrapping the standard @code{log} 
library.")
 dependencies and is intended to be used in long running processes.")
     (license license:expat)))
 
+(define-public go-github-com-clbanning-mxj-v2
+  (package
+    (name "go-github-com-clbanning-mxj-v2")
+    (version "2.7.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/clbanning/mxj";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1kdh9cdq0x9jk5vzn2k489w7k88rdwf1b87yzhr7jbkchh2nh608"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:tests? #f ; XXX: find out why
+      #:import-path "github.com/clbanning/mxj/v2"
+      #:test-subdirs #~(list ".")))
+    (native-inputs
+     (list go-github-com-google-go-cmp))
+    (home-page "https://github.com/clbanning/mxj";)
+    (synopsis "Decode / encode XML in Golang")
+    (description
+     "This package implements a functionality to marshal/unmarshal XML to/from
+@code{map[string]interface{}} values (and JSON); extract/modify values from
+maps by key or key-path, including wildcards.")
+    (license license:expat)))
+
 (define-public go-github-com-cli-safeexec
   (package
     (name "go-github-com-cli-safeexec")

Reply via email to