sharlatan pushed a commit to branch go-team
in repository guix.
commit 852de7f10d4a907d23bc22d14ee1ea7513b0e6c9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 15 18:33:32 2025 +0000
gnu: Add go-github-com-kylebanks-depth.
* gnu/packages/golang-xyz.scm (go-github-com-kylebanks-depth): New variable.
Change-Id: I20dc98c4fa6c3780a30e93e1280500221171a9d0
---
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 7eb3852e98..c8ec3f9028 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9855,6 +9855,31 @@ allocation. @code{fastime} is returning the approximate
time.")
(description "This package provides a text formatting functions in Go.")
(license license:expat)))
+(define-public go-github-com-kylebanks-depth
+ (package
+ (name "go-github-com-kylebanks-depth")
+ (version "1.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/KyleBanks/depth")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19gnz1w3ny3dawdhfnfsr17ll11isgk0jmrbfn2hsa6yqzc7jd3k"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/KyleBanks/depth"
+ #:test-subdirs #~(list ".")))
+ (home-page "https://github.com/KyleBanks/depth")
+ (synopsis "Visualize Golang Dependency Trees")
+ (description
+ "Package depth provides an ability to traverse and retrieve Go source
+code dependencies in the form of internal and external packages.")
+ (license license:expat)))
+
(define-public go-github-com-kylelemons-godebug
(package
(name "go-github-com-kylelemons-godebug")