mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: go-github-com-miekg-dns: Move to golang-web.
* gnu/packages/golang-xyz.scm (go-github-com-miekg-dns): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I7d1e38dd4fdc9578cdefdf01ff43f5201c490f73
This commit is contained in:
parent
5eb7bb7c2c
commit
0a46e960d0
2 changed files with 41 additions and 40 deletions
|
@ -31,6 +31,7 @@
|
||||||
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
||||||
;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
|
;;; Copyright © 2024 Dominic Martinez <dom@dominicm.dev>
|
||||||
;;; Copyright © 2024 Jesse Eisses <jesse@eisses.email>
|
;;; Copyright © 2024 Jesse Eisses <jesse@eisses.email>
|
||||||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||||
;;;
|
;;;
|
||||||
|
@ -2835,6 +2836,46 @@ (define-public go-github-com-microcosm-cc-bluemonday
|
||||||
(description "@code{bluemonday} is a HTML sanitizer implemented in Go.")
|
(description "@code{bluemonday} is a HTML sanitizer implemented in Go.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-miekg-dns
|
||||||
|
(package
|
||||||
|
(name "go-github-com-miekg-dns")
|
||||||
|
(version "1.1.62")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/miekg/dns")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wdsacp4ay6ji72vnszq6ksn5n060z2hv94wgjsn0pr7gpa3nk6c"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(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
|
||||||
|
go-golang-org-x-sync
|
||||||
|
go-golang-org-x-net))
|
||||||
|
(home-page "https://github.com/miekg/dns")
|
||||||
|
(synopsis "Domain Name Service library in Go")
|
||||||
|
(description
|
||||||
|
"This package provides a fully featured interface to the @acronym{DNS,
|
||||||
|
Domain Name System}. Both server and client side programming is supported.
|
||||||
|
The package allows complete control over what is sent out to the @acronym{DNS,
|
||||||
|
Domain Name Service}. The API follows the less-is-more principle, by
|
||||||
|
presenting a small interface.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-multiformats-go-multiaddr
|
(define-public go-github-com-multiformats-go-multiaddr
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-multiformats-go-multiaddr")
|
(name "go-github-com-multiformats-go-multiaddr")
|
||||||
|
|
|
@ -4405,46 +4405,6 @@ (define-public go-github-com-mgutz-ansi
|
||||||
colored strings.")
|
colored strings.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public go-github-com-miekg-dns
|
|
||||||
(package
|
|
||||||
(name "go-github-com-miekg-dns")
|
|
||||||
(version "1.1.62")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/miekg/dns")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0wdsacp4ay6ji72vnszq6ksn5n060z2hv94wgjsn0pr7gpa3nk6c"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(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
|
|
||||||
go-golang-org-x-sync
|
|
||||||
go-golang-org-x-net))
|
|
||||||
(home-page "https://github.com/miekg/dns")
|
|
||||||
(synopsis "Domain Name Service library in Go")
|
|
||||||
(description
|
|
||||||
"This package provides a fully featured interface to the @acronym{DNS,
|
|
||||||
Domain Name System}. Both server and client side programming is supported.
|
|
||||||
The package allows complete control over what is sent out to the @acronym{DNS,
|
|
||||||
Domain Name Service}. The API follows the less-is-more principle, by
|
|
||||||
presenting a small interface.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-mitchellh-colorstring
|
(define-public go-github-com-mitchellh-colorstring
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-mitchellh-colorstring")
|
(name "go-github-com-mitchellh-colorstring")
|
||||||
|
|
Loading…
Reference in a new issue