diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-13 09:54:04 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:43 +0000 |
commit | c6683a148f8cc44e9bc218a864f3e4224fb3f94f (patch) | |
tree | 73e02f67986a5a01ec64f70b1e928e9212358269 | |
parent | 16f960463e45012618bae65fd52a5eb638f58550 (diff) | |
download | guix-c6683a148f8cc44e9bc218a864f3e4224fb3f94f.tar.gz guix-c6683a148f8cc44e9bc218a864f3e4224fb3f94f.zip |
gnu: go-mvdan-cc-xurls: Rename variable.
* gnu/packages/golang-web.scm (go-mvdan-cc-xurls): Rename variable to
go-mvdan-cc-xurls-v2 to reflect current version and Golang import path
as seen in go.mod.
(xurls): Inherit from go-mvdan-cc-xurls-v2.
* gnu/packages/golang.scm (gopls) [native-inputs]: Remove
go-mvdan-cc-xurls; add go-mvdan-cc-xurls-v2.
* gnu/packages/messaging.scm (senpai): Likewise.
* gnu/packages/web.scm (miniflux): Likewise.
Change-Id: I16757182dae8b4638d1e431ad1663eee22f76ad1
-rw-r--r-- | gnu/packages/golang-web.scm | 6 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 2 | ||||
-rw-r--r-- | gnu/packages/messaging.scm | 2 | ||||
-rw-r--r-- | gnu/packages/web.scm | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 24cb0a8229..6df72ff4c9 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5601,9 +5601,9 @@ Signing and Encryption set of standards. This includes support for JSON Web Encryption, JSON Web Signature, and JSON Web Token standards.") (license license:asl2.0))) -(define-public go-mvdan-cc-xurls +(define-public go-mvdan-cc-xurls-v2 (package - (name "go-mvdan-cc-xurls") + (name "go-mvdan-cc-xurls-v2") (version "2.5.0") (source (origin @@ -5711,7 +5711,7 @@ go-github-com-tdewolff-minify-v2 source."))) (define-public xurls (package - (inherit go-mvdan-cc-xurls) + (inherit go-mvdan-cc-xurls-v2) (name "xurls") (arguments (list diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 37e2cd3b96..c9d1608564 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3206,7 +3206,7 @@ the @url{https://vuln.go.dev,Go Vulnerability Database}.") go-gopkg-in-yaml-v3 go-honnef-co-go-tools go-mvdan-cc-gofumpt - go-mvdan-cc-xurls)) + go-mvdan-cc-xurls-v2)) (home-page "https://golang.org/x/tools/gopls") (synopsis "Official language server for the Go language") (description diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index c482cd469e..c86d701c30 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -3637,7 +3637,7 @@ a text snippet), using @code{libphonenumber}.") go-golang-org-x-net go-golang-org-x-term go-golang-org-x-time - go-mvdan-cc-xurls + go-mvdan-cc-xurls-v2 scdoc)) (home-page "https://sr.ht/~delthas/senpai") (synopsis "Modern terminal IRC client") diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 31ea668606..d21f3f09e6 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -399,7 +399,7 @@ and its related documentation.") go-golang-org-x-oauth2 go-golang-org-x-term go-golang-org-x-text - go-mvdan-cc-xurls)) + go-mvdan-cc-xurls-v2)) (home-page "https://miniflux.app/") (synopsis "Minimalist and opinionated feed reader") (description |