diff options
author | Leo Nikkilä <hello@lnikki.la> | 2024-08-17 11:28:13 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 20:46:46 +0100 |
commit | 420a8a5096cda06f2dc2ae7397d08957d5759a55 (patch) | |
tree | b626a68f708346a3cc5dfef66028a1bce9b5214c /gnu | |
parent | a4d28f6574e56a8f61d7a3a4a6d27681afd2d822 (diff) | |
download | guix-420a8a5096cda06f2dc2ae7397d08957d5759a55.tar.gz guix-420a8a5096cda06f2dc2ae7397d08957d5759a55.zip |
gnu: Add go-github-com-go-stack-stack.
* gnu/packages/golang-xyz.scm (go-github-com-go-stack-stack): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: Ia9e8049ec5b0bb977b6e54faaa98dd9868e0d84c
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 842e28824d..7e674ae0ec 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2674,6 +2674,33 @@ implemented features include @end itemize") (license license:expat))) +(define-public go-github-com-go-stack-stack + (package + (name "go-github-com-go-stack-stack") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-stack/stack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01m6l9w84yq2yyly8bdfsgc386hla1gn9431c7vr3mfa3bchj5wb")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/go-stack/stack")) + (home-page "https://github.com/go-stack/stack") + (synopsis "Utilities to capture, manipulate, and format call stacks") + (description + "Package @code{stack} implements utilities to capture, manipulate, +and format call stacks. It provides a simpler API than package +@code{runtime}. The implementation takes care of the minutia and special +cases of interpreting the program counter (pc) values returned by +@code{runtime.Callers}.") + (license license:expat))) + (define-public go-github-com-go-task-slim-sprig (let ((commit "afa1e2071829e4db655eb448d6c7c16eb0bc5766") (revision "0")) |