~ruther/guix-local

063cff5c9069c070ab1debec4dd44243ed39e1c6 — Sören Tempel 2 months ago 3dac82e
gnu: Add go-github-com-mvdan-xurls.

* gnu/packages/golang-web.scm (go-github-com-mvdan-xurls): New variable.
Change-Id: I45619fea0af4408d1ac854583e297da00b7d4a60
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 25 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +25 -0
@@ 16712,6 16712,31 @@ etc)
be used as both a binary and a library.")
    (license license:bsd-3)))

(define-public go-github-com-mvdan-xurls
  (package
    (name "go-github-com-mvdan-xurls")
    (version "1.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/mvdan/xurls")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "05q4nqbpgfb0a35sn22rn9mlag2ks4cgwb54dx925hipp6zgj1hx"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/mvdan/xurls"))
    (propagated-inputs (list go-golang-org-x-net))
    (home-page "https://github.com/mvdan/xurls")
    (synopsis "Extracts URLs from text")
    (description
     "Xurls extracts urls from plain text using regular expressions.  It can
be used as both a binary and a library.")
    (license license:bsd-3)))

(define-public go-nhooyr-io-websocket
  (package
    (name "go-nhooyr-io-websocket")