gnu: Add go-github-com-mitchellh-reflectwalk.

* gnu/packages/golang.scm (go-github-com-mitchellh-reflectwalk): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-08 23:03:36 +03:00
parent 0b7442491e
commit 37cb391ea6
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C

View File

@ -2754,6 +2754,29 @@ cross-compilation.")
(description "Go library for decoding generic map values")
(license license:expat)))
(define-public go-github-com-mitchellh-reflectwalk
(package
(name "go-github-com-mitchellh-reflectwalk")
(version "1.0.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mitchellh/reflectwalk")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0pa6a3nhzwv5s5yqcmsmsfhdp5ggxsg2wa86f3akawxrhrkjarnx"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/mitchellh/reflectwalk"))
(home-page "https://github.com/mitchellh/reflectwalk/")
(synopsis "Walk a value in Go using reflection")
(description "reflectwalk is a Go library for \"walking\" a value in Go
using reflection, in the same way a directory tree can be \"walked\" on the
filesystem. Walking a complex structure can allow you to do manipulations on
unknown structures such as those decoded from JSON.")
(license license:expat)))
(define-public go-github-com-multiformats-go-multiaddr
(let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb")
(revision "0"))