diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-18 19:00:40 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-03 22:23:22 +0100 |
commit | c0ae1fa13162b27179c70928904984011beb0d36 (patch) | |
tree | 7cf9ae016de62df4f25d83f4a259d45811b30a97 | |
parent | d7a55dd7d5cf007c6aa4a3f331f1ea70c1302ac8 (diff) | |
download | guix-c0ae1fa13162b27179c70928904984011beb0d36.tar.gz guix-c0ae1fa13162b27179c70928904984011beb0d36.zip |
gnu: Add go-github-com-errata-ai-regexp2.
* gnu/packages/golang-xyz.scm (go-github-com-errata-ai-regexp2): New variable.
Change-Id: If9af0a91da1d7a08767dea4614ece9fd620a143a
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index af7860781d..6f6167972f 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1500,6 +1500,30 @@ scanner API made public.") for @code{Set}, @code{Get}, @code{Delete} and @code{Len}.") (license license:expat))) +(define-public go-github-com-errata-ai-regexp2 + (package + (inherit go-github-com-dlclark-regexp2) + (name "go-github-com-errata-ai-regexp2") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/errata-ai/regexp2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p28af5c7dn4knnksl9dxjb44cicsmadzb8kwzyyf20kr7hrq53q")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/errata-ai/regexp2")) + (home-page "https://github.com/errata-ai/regexp2") + (description + (string-append (package-description go-github-com-dlclark-regexp2) + " This package is a fork of dlclark/regexp2 providing a +more similar API to regexp.")))) + (define-public go-github-com-expr-lang-expr (package (name "go-github-com-expr-lang-expr") |