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:
Sharlatan Hellseher 2024-06-11 10:02:46 +01:00
parent 02bb43b722
commit e76a755ece
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")