mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: go-github-com-davecgh-go-spew: Move to golang-check.
* gnu/packages/golang.scm (go-github-com-davecgh-go-spew): Move from here ... * gnu/packages/golang-check.scm: ... to here. * gnu/packages/high-availability.scm: Add (gnu packages golang-check) module. Change-Id: I935006c3656b7bf18b91e529296778672338f094
This commit is contained in:
parent
13e682ea94
commit
b5bbfef22a
3 changed files with 39 additions and 38 deletions
|
@ -124,6 +124,44 @@ (define-public go-github-com-cheekybits-is
|
|||
@end itemize\n")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-davecgh-go-spew
|
||||
(package
|
||||
(name "go-github-com-davecgh-go-spew")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/davecgh/go-spew")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:unpack-path "github.com/davecgh/go-spew"
|
||||
#:import-path "github.com/davecgh/go-spew/spew"))
|
||||
(home-page "https://github.com/davecgh/go-spew")
|
||||
(synopsis "Deep pretty printer for Go data structures to aid in debugging")
|
||||
(description "Package @command{spew} implements a deep pretty printer
|
||||
for Go data structures to aid in debugging.
|
||||
|
||||
A quick overview of the additional features spew provides over the built-in
|
||||
printing facilities for Go data types are as follows:
|
||||
|
||||
@itemize
|
||||
@item Pointers are dereferenced and followed.
|
||||
@item Circular data structures are detected and handled properly.
|
||||
@item Custom Stringer/error interfaces are optionally invoked, including on
|
||||
unexported types.
|
||||
@item Custom types which only implement the Stringer/error interfaces via a
|
||||
pointer receiver are optionally invoked when passing non-pointer variables.
|
||||
@item Byte arrays and slices are dumped like the hexdump -C command which
|
||||
includes offsets, byte values in hex, and ASCII output (only when using Dump
|
||||
style).
|
||||
@end itemize")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public go-github-com-frankban-quicktest
|
||||
(package
|
||||
(name "go-github-com-frankban-quicktest")
|
||||
|
|
|
@ -5345,44 +5345,6 @@ (define-public go-github-com-libp2p-go-flow-metrics
|
|||
that's a lot faster (and only does simple bandwidth metrics).")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-davecgh-go-spew
|
||||
(package
|
||||
(name "go-github-com-davecgh-go-spew")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/davecgh/go-spew")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:unpack-path "github.com/davecgh/go-spew"
|
||||
#:import-path "github.com/davecgh/go-spew/spew"))
|
||||
(home-page "https://github.com/davecgh/go-spew")
|
||||
(synopsis "Deep pretty printer for Go data structures to aid in debugging")
|
||||
(description "Package @command{spew} implements a deep pretty printer
|
||||
for Go data structures to aid in debugging.
|
||||
|
||||
A quick overview of the additional features spew provides over the built-in printing facilities for Go data types are as follows:
|
||||
|
||||
@itemize
|
||||
@item Pointers are dereferenced and followed.
|
||||
@item Circular data structures are detected and handled properly.
|
||||
@item Custom Stringer/error interfaces are optionally invoked, including on
|
||||
unexported types.
|
||||
@item Custom types which only implement the Stringer/error interfaces via a
|
||||
pointer receiver are optionally invoked when passing non-pointer variables.
|
||||
@item Byte arrays and slices are dumped like the hexdump -C command which
|
||||
includes offsets, byte values in hex, and ASCII output (only when using Dump
|
||||
style).
|
||||
@end itemize\n")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public go-github-com-btcsuite-btclog
|
||||
(let ((commit "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a")
|
||||
(revision "0"))
|
||||
|
|
|
@ -36,6 +36,7 @@ (define-module (gnu packages high-availability)
|
|||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages golang)
|
||||
#:use-module (gnu packages golang-check)
|
||||
#:use-module (gnu packages golang-compression)
|
||||
#:use-module (gnu packages golang-crypto)
|
||||
#:use-module (gnu packages golang-web)
|
||||
|
|
Loading…
Reference in a new issue