gnu: Add go-github-com-maruel-panicparse.

* gnu/packages/golang.scm (go-github-com-maruel-panicparse): New variable.
This commit is contained in:
Leo Famulari 2019-07-17 13:33:42 -04:00
parent 8ffc727e38
commit d0ced446d0
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -3610,3 +3610,26 @@ (define-public go-github-com-pkg-errors
error handling primitives in Go.")
(home-page "https://github.com/pkg/errors")
(license license:bsd-2))))
(define-public go-github-com-maruel-panicparse
(package
(name "go-github-com-maruel-panicparse")
(version "1.2.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/maruel/panicparse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"05hf68ifb7ww4rpmxyywbj9r0kyap45p1273ncq4qy2ydv042l8j"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/maruel/panicparse"))
(synopsis "Toolkit for parsing Go stack traces")
(description "This package provides a toolkit for parsing Go language panic
stack traces. It simplifies the traces to make salient information more visible
and aid debugging.")
(home-page "https://github.com/maruel/panicparse")
(license license:asl2.0)))