me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-tidwall-match.

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

Change-Id: I6923c2383784aeaa45d432a92c4d05f55cd3bea0
master
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
1 changed files with 23 additions and 0 deletions

View File

@ -3462,6 +3462,29 @@ well as a program to generate applications and command files.")
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")