diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-23 17:20:29 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-24 22:52:21 +0000 |
commit | 0e4bd4d97ec45fa52a543ad6f50b2114677cd313 (patch) | |
tree | f95797b6a324555acdfc6b6b57ca92ec8c8f8948 /gnu/packages/golang-xyz.scm | |
parent | 7130b9d425546e32b0c640c0f27625a5d89bca14 (diff) |
gnu: Add go-github-com-clbanning-mxj-v2.
* gnu/packages/golang-xyz.scm (go-github-com-clbanning-mxj-v2): New variable.
Change-Id: Ib1332703a10683ddffe2515c31abddded0a28d5e
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
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") |