mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add perl-net-dns.
* gnu/packages/networking.scm (perl-net-dns): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
6b5e654dd4
commit
68b14f2e15
1 changed files with 24 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages networking)
|
(define-module (gnu packages networking)
|
||||||
|
#:use-module (guix build-system perl)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -412,3 +413,26 @@ (define-public httping
|
||||||
by firewalls or when you want to monitor the response time of the actual web
|
by firewalls or when you want to monitor the response time of the actual web
|
||||||
application stack itself.")
|
application stack itself.")
|
||||||
(license license:gpl2))) ; with permission to link with OpenSSL
|
(license license:gpl2))) ; with permission to link with OpenSSL
|
||||||
|
|
||||||
|
(define-public perl-net-dns
|
||||||
|
(package
|
||||||
|
(name "perl-net-dns")
|
||||||
|
(version "1.06")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/N/NL/NLNETLABS/Net-DNS-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"07m5331132h9xkh1i6jv9d80f571yva27iqa31aq4sm31iw7nn53"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("perl-digest-hmac" ,perl-digest-hmac)))
|
||||||
|
(home-page "http://search.cpan.org/dist/Net-DNS")
|
||||||
|
(synopsis
|
||||||
|
"Perl Interface to the Domain Name System")
|
||||||
|
(description "Net::DNS is the Perl Interface to the Domain Name System.")
|
||||||
|
(license license:x11)))
|
||||||
|
|
Loading…
Reference in a new issue