gnu: Add go-github-com-charlievieth-fastwalk.

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

Change-Id: I1e684ede86688f0bb5a1d9bd1cbb4015366d5f8b
This commit is contained in:
Sharlatan Hellseher 2024-08-11 19:53:12 +01:00
parent d1315bb2ba
commit b13e353147
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1326,6 +1326,31 @@ (define-public go-github-com-calmh-xdr
reflection.")
(license license:expat)))
(define-public go-github-com-charlievieth-fastwalk
(package
(name "go-github-com-charlievieth-fastwalk")
(version "1.0.8")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/charlievieth/fastwalk")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "17zy17q31p8b93bf703rr0xqafp02bb0slkrgpxb8r0aaxz3zg4y"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/charlievieth/fastwalk"))
(home-page "https://github.com/charlievieth/fastwalk")
(synopsis "Fast directory traversal for Golang")
(description
"Package fastwalk provides a faster version of
@url{/path/filepath#@code{WalkDir,filepath.WalkDir}} for file system scanning
tools.")
(license license:expat)))
(define-public go-github-com-cheggaaa-pb
(package
(name "go-github-com-cheggaaa-pb")