mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 04:20:44 +02:00
gnu: Add go-github-com-tinylib-msgp.
* gnu/packages/golang-xyz.scm (go-github-com-tinylib-msgp): New variable. Change-Id: I901e4f1671a0868b0042d224f26ed74f2f9d3900
This commit is contained in:
parent
2b5733e32d
commit
7c49f2f0aa
1 changed files with 33 additions and 0 deletions
|
@ -7080,6 +7080,39 @@ readability, or to compact JSON for smaller payloads.")
|
||||||
document.")
|
document.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-tinylib-msgp
|
||||||
|
(package
|
||||||
|
(name "go-github-com-tinylib-msgp")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/tinylib/msgp")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0mplb420i9cmf40qwsqzd1plln52nl0x0b7nkxffyr0pdh9za79a"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; Tests require alternative Golang compiler
|
||||||
|
;; <https://github.com/tinygo-org/tinygo>.
|
||||||
|
#:tests? #f
|
||||||
|
#:import-path "github.com/tinylib/msgp"
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'build))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-golang-org-x-tools go-github-com-philhofer-fwd))
|
||||||
|
(home-page "http://msgpack.org/")
|
||||||
|
(synopsis "MessagePack Code Generator")
|
||||||
|
(description
|
||||||
|
"This package provides a code generation tool for creating methods to
|
||||||
|
serialize and de-serialize Go data structures to and from data interchange
|
||||||
|
format - @url{https://en.wikipedia.org/wiki/MessagePack,MessagePack}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-tklauser-go-sysconf
|
(define-public go-github-com-tklauser-go-sysconf
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-tklauser-go-sysconf")
|
(name "go-github-com-tklauser-go-sysconf")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue