mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add go-github-com-tidwall-match.
* gnu/packages/golang-xyz.scm (go-github-com-tidwall-match): New variable. Change-Id: I6923c2383784aeaa45d432a92c4d05f55cd3bea0
This commit is contained in:
parent
02bb43b722
commit
e76a755ece
1 changed files with 23 additions and 0 deletions
|
@ -3462,6 +3462,29 @@ (define-public go-github-com-syndtr-goleveldb-leveldb
|
|||
storage system.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public go-github-com-tidwall-match
|
||||
(package
|
||||
(name "go-github-com-tidwall-match")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tidwall/match")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1n25md63xr5m66r6zc77n6fgcpv2ljrlk92ivp9hvp8xya22as9k"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/tidwall/match"))
|
||||
(home-page "https://github.com/tidwall/match")
|
||||
(synopsis "Simple string pattern matcher for Golang")
|
||||
(description
|
||||
"Package match provides a simple pattern matcher with unicode support.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-tidwall-pretty
|
||||
(package
|
||||
(name "go-github-com-tidwall-pretty")
|
||||
|
|
Loading…
Reference in a new issue