gnu: Add perl-socket6.

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

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

View File

@ -436,3 +436,36 @@ application stack itself.")
"Perl Interface to the Domain Name System")
(description "Net::DNS is the Perl Interface to the Domain Name System.")
(license license:x11)))
(define-public perl-socket6
(package
(name "perl-socket6")
(version "0.28")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/U/UM/UMEMOTO/Socket6-"
version
".tar.gz"))
(sha256
(base32
"11j5jzqbzmwlws9zals43ry2f1nw9qy6im7yhn9ck5rikywrmm5z"))))
(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/Socket6")
(synopsis
"IPv6 related part of the C socket.h defines and structure manipulators for Perl")
(description "Socket6 binds the IPv6 related part of the C socket header
definitions and structure manipulators for Perl.")
(license license:bsd-3)))