1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: Add go-github-com-kylebanks-depth.

* gnu/packages/golang-xyz.scm (go-github-com-kylebanks-depth): New variable.

Change-Id: I20dc98c4fa6c3780a30e93e1280500221171a9d0
This commit is contained in:
Sharlatan Hellseher 2025-02-15 18:33:32 +00:00
parent eaeae4e077
commit aaacaaf10a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -9890,6 +9890,31 @@ allocation. @code{fastime} is returning the approximate time.")
(description "This package provides a text formatting functions in Go.") (description "This package provides a text formatting functions in Go.")
(license license:expat))) (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 (define-public go-github-com-kylelemons-godebug
(package (package
(name "go-github-com-kylelemons-godebug") (name "go-github-com-kylelemons-godebug")