sharlatan pushed a commit to branch go-team
in repository guix.
commit 2bce28645f6654e75e9858c5314035afe2f31e89
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 15 20:41:56 2024 +0100
gnu: Add go-github-com-xlab-treeprint.
* gnu/packages/golang-xyz.scm (go-github-com-xlab-treeprint): New variable.
Change-Id: I5bd6543c5a34881a6a1c084bdb006c6086c312e4
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 8686f3f286..192d41183d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -7213,6 +7213,31 @@ string. The string can be a string retorned for
@code{time.Duration} or a
similar string with weeks or days too.")
(license license:bsd-3)))
+(define-public go-github-com-xlab-treeprint
+ (package
+ (name "go-github-com-xlab-treeprint")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/xlab/treeprint")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00k1xj3rwqa5f6n9fks8bh1m7vzssdjwxnam9kzy0rlbc74lgkl3"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/xlab/treeprint"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (home-page "https://github.com/xlab/treeprint")
+ (synopsis "ASCII tree composing tool")
+ (description
+ "This package provides a simple ASCII tree composing tool.")
+ (license license:expat)))
+
(define-public go-github-com-yuin-gopher-lua
(package
(name "go-github-com-yuin-gopher-lua")