diff options
author | Troy Figiel <troy@troyfigiel.com> | 2024-02-17 20:11:05 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-06 23:28:30 +0000 |
commit | 15b96de8526e6cae03fa919384aaa47a8d7a0699 (patch) | |
tree | 8832279701de5c682fa715dd8df9d1445222fa9b /gnu/packages | |
parent | a28498d83d644d02a0e02ce74954c6e936ff0543 (diff) | |
download | guix-15b96de8526e6cae03fa919384aaa47a8d7a0699.tar guix-15b96de8526e6cae03fa919384aaa47a8d7a0699.tar.gz |
gnu: Add go-github-com-k0kubun-pp.
* gnu/packages/golang-xyz.scm (go-github-com-k0kubun-pp): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-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 fe0a06270e..f85bfe1e71 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -795,6 +795,33 @@ Differentiation between text and binary files}. struct to another.") (license license:expat))) +(define-public go-github-com-k0kubun-pp + (package + (name "go-github-com-k0kubun-pp") + (version "3.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/k0kubun/pp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vpp5n3kdazk4s1ljhwbrhz3kilzvdvx5hya922bg0q9vnjqqvvc")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/k0kubun/pp")) + (propagated-inputs (list go-github-com-mattn-go-colorable + go-golang-org-x-text)) + (home-page "https://github.com/k0kubun/pp") + (synopsis "Colored pretty-printer for Go") + (description + "This package provides a pretty-printer for Go. The functions defined by +@code{pp} follow an API similar to @code{fmt} and its configuration can be +customized globally.") + (license license:expat))) + (define-public go-github-com-matryer-try (package (name "go-github-com-matryer-try") |