mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add Exporter-Tiny.
* gnu/packages/perl.scm (perl-exporter-tiny): New variable.
This commit is contained in:
parent
da9e3012b5
commit
a595c108cd
1 changed files with 22 additions and 0 deletions
|
@ -647,6 +647,28 @@ (define-public perl-exporter-lite
|
|||
"Exporter-Lite-" version))
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-exporter-tiny
|
||||
(package
|
||||
(name "perl-exporter-tiny")
|
||||
(version "0.042")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
|
||||
"Exporter-Tiny-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/Exporter-Tiny")
|
||||
(synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
|
||||
(description "Exporter::Tiny supports many of Sub::Exporter's
|
||||
external-facing features including renaming imported functions with the `-as`,
|
||||
`-prefix` and `-suffix` options; explicit destinations with the `into` option;
|
||||
and alternative installers with the `installler` option. But it's written in
|
||||
only about 40% as many lines of code and with zero non-core dependencies.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-extutils-installpaths
|
||||
(package
|
||||
(name "perl-extutils-installpaths")
|
||||
|
|
Loading…
Reference in a new issue