sharlatan pushed a commit to branch go-team in repository guix. commit f02e5761aaa586c80009d1b0eb3230875f4a3dab Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 194a946b8d..38e2ad319b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -9851,6 +9851,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")