mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add perl-net-bonjour.
* gnu/packages/networking.scm (perl-net-bonjour): New variable.
This commit is contained in:
parent
3584cff93d
commit
bf667efe91
1 changed files with 23 additions and 0 deletions
|
@ -55,6 +55,7 @@
|
|||
;;; Copyright © 2022 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
||||
;;; Copyright © 2022 Reza Alizadeh Majd <r.majd@pantherx.org>
|
||||
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
|
||||
;;; Copyright © 2023 Andreas Enge <andreas@enge.fr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -2304,6 +2305,28 @@ (define-public perl-net-dns
|
|||
(description "Net::DNS is the Perl Interface to the Domain Name System.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public perl-net-bonjour
|
||||
(package
|
||||
(name "perl-net-bonjour")
|
||||
(version "0.96")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/C/CH/CHLIGE/Net-Bonjour-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"15qzkfk0isn6c4js3ih95k3dylq6scijp863s0485c00n8x1z2n3"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs (list perl-net-dns))
|
||||
(home-page "https://metacpan.org/release/Net-Bonjour")
|
||||
(synopsis "Module for DNS service discovery (Apple's Bonjour)")
|
||||
(description "Net::Bonjour is a set of modules that allow one to
|
||||
discover local services via multicast DNS (mDNS) or enterprise services
|
||||
via traditional DNS. This method of service discovery has been branded
|
||||
as Bonjour by Apple Computer.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-socket6
|
||||
(package
|
||||
(name "perl-socket6")
|
||||
|
|
Loading…
Reference in a new issue