1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-19 16:50:38 +02:00

gnu: Add go-github-com-dlclark-regexp2.

* gnu/packages/golang.scm (go-github-com-dlclark-regexp2): New variable.
This commit is contained in:
Oleg Pykhalov
2020-08-08 23:24:33 +03:00
parent bdb5a10880
commit 1d47f75266

View File

@@ -4496,3 +4496,24 @@ template functions.")
(description "@code{doublestar} is a Go implementation of path pattern
matching and globbing with support for \"doublestar\" patterns.")
(license license:expat)))
(define-public go-github-com-dlclark-regexp2
(package
(name "go-github-com-dlclark-regexp2")
(version "1.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dlclark/regexp2")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/dlclark/regexp2"))
(home-page "https://github.com/dlclark/regexp2/")
(synopsis "Full featured regular expressions for Go")
(description "Regexp2 is a feature-rich RegExp engine for Go.")
(license license:expat)))