gnu: Add perl-net-bgp.
* gnu/packages/perl.scm (perl-net-bgp): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
		
							parent
							
								
									5f1553ce9e
								
							
						
					
					
						commit
						0e9c253313
					
				
					 1 changed files with 26 additions and 0 deletions
				
			
		|  | @ -22,6 +22,7 @@ | ||||||
| ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz> | ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz> | ||||||
| ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net> | ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net> | ||||||
| ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com> | ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com> | ||||||
|  | ;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org> | ||||||
| ;;; | ;;; | ||||||
| ;;; This file is part of GNU Guix. | ;;; This file is part of GNU Guix. | ||||||
| ;;; | ;;; | ||||||
|  | @ -6697,6 +6698,31 @@ cycle.  Functions called in the package itself will still be bound by their | ||||||
| name, but they won't show up as methods on your class or instances.") | name, but they won't show up as methods on your class or instances.") | ||||||
|     (license (package-license perl)))) |     (license (package-license perl)))) | ||||||
| 
 | 
 | ||||||
|  | (define-public perl-net-bgp | ||||||
|  |   (package | ||||||
|  |     (name "perl-net-bgp") | ||||||
|  |     (version "0.17") | ||||||
|  |     (source | ||||||
|  |       (origin | ||||||
|  |         (method url-fetch) | ||||||
|  |         (uri (string-append | ||||||
|  |                "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz")) | ||||||
|  |         (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y")))) | ||||||
|  |     (build-system perl-build-system) | ||||||
|  |     (home-page "https://metacpan.org/release/Net-BGP") | ||||||
|  |     (synopsis "Object-oriented API to the BGP protocol") | ||||||
|  |     (description | ||||||
|  |       "This module is an implementation of the BGP-4 inter-domain routing protocol. | ||||||
|  | It encapsulates all of the functionality needed to establish and maintain a | ||||||
|  | BGP peering session and exchange routing update information with the peer. | ||||||
|  | It aims to provide a simple API to the BGP protocol for the purposes of | ||||||
|  | automation, logging, monitoring, testing, and similar tasks using the | ||||||
|  | power and flexibility of perl.  The module does not implement the | ||||||
|  | functionality of a RIB (Routing Information Base) nor does it modify the | ||||||
|  | kernel routing table of the host system.  However, such operations could be | ||||||
|  | implemented using the API provided by the module.") | ||||||
|  |   (license perl-license))) | ||||||
|  | 
 | ||||||
| (define-public perl-net-dns-native | (define-public perl-net-dns-native | ||||||
|   (package |   (package | ||||||
|     (name "perl-net-dns-native") |     (name "perl-net-dns-native") | ||||||
|  |  | ||||||
		Reference in a new issue