diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 3722ddd2ce..bdad626368 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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")