mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: go-github-com-miekg-dns: Update to 1.1.62.
* gnu/packages/golang-xyz.scm (go-github-com-miekg-dns): Update to 1.1.62. [arguments] <#:phases>: Add 'disable-failing-tests. Change-Id: I857df6a1520e0e08f7255b700ffc2ac1494b27db
This commit is contained in:
parent
0fc1ce6f4f
commit
5eb7bb7c2c
1 changed files with 13 additions and 3 deletions
|
@ -4408,7 +4408,7 @@ (define-public go-github-com-mgutz-ansi
|
|||
(define-public go-github-com-miekg-dns
|
||||
(package
|
||||
(name "go-github-com-miekg-dns")
|
||||
(version "1.1.48")
|
||||
(version "1.1.62")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -4417,9 +4417,19 @@ (define-public go-github-com-miekg-dns
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "14m4wnbgmc1prj4ds1fsz1nwb1awaq365lhbp8clzsidxmhjf3hl"))))
|
||||
(base32 "0wdsacp4ay6ji72vnszq6ksn5n060z2hv94wgjsn0pr7gpa3nk6c"))))
|
||||
(build-system go-build-system)
|
||||
(arguments '(#:import-path "github.com/miekg/dns"))
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/miekg/dns"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-failing-tests
|
||||
(lambda* (#:key tests? import-path #:allow-other-keys)
|
||||
(with-directory-excursion (string-append "src/" import-path)
|
||||
(substitute* (find-files "." "\\_test.go$")
|
||||
;; Unable to run test server.
|
||||
(("TestIsPacketConn") "OffTestIsPacketConn"))))))))
|
||||
(propagated-inputs
|
||||
(list go-golang-org-x-tools
|
||||
go-golang-org-x-sys
|
||||
|
|
Loading…
Reference in a new issue