mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-mvdan-cc-xurls: Update to 2.5.0.
* gnu/packages/golang.scm (go-mvdan-cc-xurls): Update to 2.5.0. [propagated-inputs]: Add go-golang-org-x-mod. (xurls) [arguments]: <#:phases>: Add disable-failing-tests phase. Change-Id: If9e2b955218913cb237eef7f643dab1d72fa129f
This commit is contained in:
parent
63e36f3a8b
commit
ddeb013054
1 changed files with 16 additions and 6 deletions
|
@ -7495,7 +7495,7 @@ That is, @code{gofumpt} is happy with a subset of the formats that
|
||||||
(define-public go-mvdan-cc-xurls
|
(define-public go-mvdan-cc-xurls
|
||||||
(package
|
(package
|
||||||
(name "go-mvdan-cc-xurls")
|
(name "go-mvdan-cc-xurls")
|
||||||
(version "2.4.0")
|
(version "2.5.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -7504,11 +7504,14 @@ That is, @code{gofumpt} is happy with a subset of the formats that
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0b040nbk1vwlk1qljavh8w8fn2r243q700n6gr8j2asmnz0xq84p"))))
|
"1516hwlxbnhdca56qy7sx9h2n5askq6ddqpqyp3f5rvmzdkxf4zn"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "mvdan.cc/xurls/v2"))
|
`(#:import-path "mvdan.cc/xurls/v2"))
|
||||||
(inputs (list go-golang-org-x-sync go-github-com-rogpeppe-go-internal))
|
(propagated-inputs
|
||||||
|
(list go-github-com-rogpeppe-go-internal
|
||||||
|
go-golang-org-x-mod
|
||||||
|
go-golang-org-x-sync))
|
||||||
(home-page "https://mvdan.cc/xurls/v2/")
|
(home-page "https://mvdan.cc/xurls/v2/")
|
||||||
(synopsis "Extracts URLs from text")
|
(synopsis "Extracts URLs from text")
|
||||||
(description
|
(description
|
||||||
|
@ -7521,9 +7524,16 @@ be used as both a binary and a library.")
|
||||||
(inherit go-mvdan-cc-xurls)
|
(inherit go-mvdan-cc-xurls)
|
||||||
(name "xurls")
|
(name "xurls")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "mvdan.cc/xurls/v2/cmd/xurls"
|
(list
|
||||||
#:unpack-path "mvdan.cc/xurls/v2"
|
#:import-path "mvdan.cc/xurls/v2/cmd/xurls"
|
||||||
#:install-source? #f))))
|
#:unpack-path "mvdan.cc/xurls/v2"
|
||||||
|
#:install-source? #f
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-failing-tests
|
||||||
|
(lambda* (#:key import-path #:allow-other-keys)
|
||||||
|
(with-directory-excursion (string-append "src/" import-path)
|
||||||
|
(delete-file "testdata/script/version.txtar")))))))))
|
||||||
|
|
||||||
(define-public go-github-com-davecgh-go-xdr
|
(define-public go-github-com-davecgh-go-xdr
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue