diff options
| author | Sören Tempel <soeren+git@soeren-tempel.net> | 2025-12-01 16:16:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-18 23:19:27 +0000 |
| commit | 81e1d959042b6bfd603da29a67aea6c4dc1b95e0 (patch) | |
| tree | 8f0431716bb2a6652d32a07f62b01fd6ba7d73e6 /gnu | |
| parent | 90a917605b0016fb08b82273cba55742427d0501 (diff) | |
gnu: Add go-github-com-zk-org-pretty.
* gnu/packages/golang-xyz.scm (go-github-com-zk-org-pretty): New variable.
Change-Id: I394de87977bfa8e5b90c719fda66d5417cf549bf
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b5b6edfb60..9e82ccd423 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -24667,6 +24667,31 @@ It is a maintained fork of @url{gorilla/schema, https://github.com/gorilla/schema}") (license license:bsd-3))) +(define-public go-github-com-zk-org-pretty + (package + (name "go-github-com-zk-org-pretty") + (version "0.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zk-org/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "086zcjamclnn3y9w4ww88ik9avwihbxk7h08vk7686643i1zij96")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/zk-org/pretty")) + (propagated-inputs (list go-github-com-rogpeppe-go-internal + go-github-com-kr-text)) + (home-page "https://github.com/zk-org/pretty") + (synopsis "Pretty printing for Golang values") + (description + "This package provides a pretty printing library for Golang values.") + (license license:expat))) + (define-public go-github-com-zyedidia-clipper (package (name "go-github-com-zyedidia-clipper") |
