gnu: Add Sub::Exporter.

* gnu/packages/perl.scm (perl-sub-exporter): New variable.
master
Ricardo Wurmus 2015-02-21 19:55:33 +01:00
parent 1420576458
commit 61593ab3d6
1 changed files with 24 additions and 0 deletions

View File

@ -343,6 +343,30 @@ Perlish API and none of the bloat and rarely used features of IPC::Run.")
;; licenses, any version."
(license (list bsd-3 gpl3+))))
(define-public perl-sub-exporter
(package
(name "perl-sub-exporter")
(version "0.987")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
version ".tar.gz"))
(sha256
(base32
"1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-data-optlist" ,perl-data-optlist)
("perl-params-util" ,perl-params-util)))
(home-page "http://search.cpan.org/dist/Sub-Exporter")
(synopsis "Sophisticated exporter for custom-built routines")
(description
"Sub::Exporter provides a sophisticated alternative to Exporter.pm for
custom-built routines.")
(license (package-license perl))))
(define-public perl-sub-install
(package
(name "perl-sub-install")