mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add go-github-com-dlclark-regexp2.
* gnu/packages/golang.scm (go-github-com-dlclark-regexp2): New variable.
This commit is contained in:
parent
bdb5a10880
commit
1d47f75266
1 changed files with 21 additions and 0 deletions
|
@ -4496,3 +4496,24 @@ (define-public go-github-com-bmatcuk-doublestar
|
|||
(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)))
|
||||
|
|
Loading…
Reference in a new issue