me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-netaddr-ip.

* gnu/packages/networking.scm (perl-netaddr-ip): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Danny Milosavljevic 2016-07-28 23:38:21 +02:00 committed by Leo Famulari
parent 8d60dd7174
commit 1201eab9c4
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 33 additions and 0 deletions

View File

@ -498,3 +498,36 @@ definitions and structure manipulators for Perl.")
(description "Net::DNS::Resolver::Programmable is a programmable DNS resolver for
offline emulation of DNS.")
(license (package-license perl))))
(define-public perl-netaddr-ip
(package
(name "perl-netaddr-ip")
(version "4.079")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/M/MI/MIKER/NetAddr-IP-"
version
".tar.gz"))
(sha256
(base32
"1rx0dinrz9fk9qcg4rwqq5n1dm3xv2arymixpclcv2q2nzgq4npc"))))
(build-system perl-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(args `("Makefile.PL"
,(string-append "PREFIX=" out)
"INSTALLDIRS=site")))
(setenv "CONFIG_SHELL" (which "sh"))
(zero? (apply system* "perl" args))))))))
(home-page
"http://search.cpan.org/dist/NetAddr-IP")
(synopsis
"Manages IPv4 and IPv6 addresses and subnets")
(description "NetAddr::IP manages IPv4 and IPv6 addresses and subsets.")
(license (package-license perl))))