mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add go-github-com-goreleaser-fileglob.
* gnu/packages/golang-xyz.scm (go-github-com-goreleaser-fileglob): New variable. Change-Id: I068cad724f0aabeda01e09c4ce9ea48c6b344424
This commit is contained in:
parent
c7e9c98ef6
commit
d26bb26b87
1 changed files with 30 additions and 0 deletions
|
@ -3556,6 +3556,36 @@ (define-public go-github-com-gookit-color
|
|||
@end itemize")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-goreleaser-fileglob
|
||||
(package
|
||||
(name "go-github-com-goreleaser-fileglob")
|
||||
(version "1.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/goreleaser/fileglob")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1c4p98prb0gf8a8789lxp1qw0v6anlqk5b1ff2r861gv2nclp8dx"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/goreleaser/fileglob"))
|
||||
(native-inputs
|
||||
(list go-github-com-caarlos0-testfs
|
||||
go-github-com-matryer-is))
|
||||
(propagated-inputs
|
||||
(list go-github-com-gobwas-glob))
|
||||
(home-page "https://github.com/goreleaser/fileglob")
|
||||
(synopsis "Golang file globbing library")
|
||||
(description
|
||||
"This package provides a filesystem glob API. It uses @code{gobwas/glob}
|
||||
underneath and returns only matching files or direcories, depending on the
|
||||
configuration.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-hashicorp-errwrap
|
||||
(package
|
||||
(name "go-github-com-hashicorp-errwrap")
|
||||
|
|
Loading…
Reference in a new issue