mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add go-github-com-mattn-go-zglob.
* gnu/packages/golang.scm (go-github-com-mattn-go-zglob): New variable.
This commit is contained in:
parent
aff9576811
commit
42c6503d37
1 changed files with 22 additions and 0 deletions
|
@ -3374,3 +3374,25 @@ (define-public go-github-com-golang-protobuf-proto
|
|||
data serialization format.")
|
||||
(home-page "https://github.com/golang/protobuf")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-mattn-go-zglob
|
||||
(package
|
||||
(name "go-github-com-mattn-go-zglob")
|
||||
(version "0.0.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/mattn/go-zglob.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1sncdyq5fbd42al4amyy91h7vlzm3wm6c9vl8za2pjgfgsd581fz"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/mattn/go-zglob"))
|
||||
(home-page "https://github.com/mattn/go-zglob")
|
||||
(synopsis "Glob library that descends into other directories")
|
||||
(description " A glob library that implements descending into other
|
||||
directories. It is optimized for filewalking. ")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue