gnu: Add perl-file-zglob.
* gnu/packages/perl.scm (perl-file-zglob): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d209710bd4
commit
7640c62dd2
|
@ -988,26 +988,23 @@ options.")
|
||||||
(package
|
(package
|
||||||
(name "perl-config-ini")
|
(name "perl-config-ini")
|
||||||
(version "0.025")
|
(version "0.025")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (string-append
|
||||||
(uri (string-append
|
"mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
|
||||||
"https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Config-INI-"
|
version ".tar.gz"))
|
||||||
version
|
(sha256
|
||||||
".tar.gz"))
|
(base32
|
||||||
(sha256
|
"0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
|
||||||
(base32
|
|
||||||
"0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
|
|
||||||
(build-system perl-build-system)
|
(build-system perl-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("perl-mixin-linewise" ,perl-mixin-linewise)
|
`(("perl-mixin-linewise" ,perl-mixin-linewise)
|
||||||
("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
|
("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
|
||||||
("perl-sub-exporter" ,perl-sub-exporter)))
|
("perl-sub-exporter" ,perl-sub-exporter)))
|
||||||
(home-page
|
(home-page "http://search.cpan.org/dist/Config-INI")
|
||||||
"http://search.cpan.org/dist/Config-INI")
|
|
||||||
(synopsis "Simple .ini-file format reader and writer")
|
(synopsis "Simple .ini-file format reader and writer")
|
||||||
(description "Config::INI provides a module that facilates the reading and
|
(description "@code{Config::INI} is a module that facilates the reading
|
||||||
writing of .ini style configuration files.")
|
and writing of @code{.ini}-style configuration files.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-context-preserve
|
(define-public perl-context-preserve
|
||||||
|
@ -2466,6 +2463,26 @@ shell.")
|
||||||
"File-Which-" version))
|
"File-Which-" version))
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-file-zglob
|
||||||
|
(package
|
||||||
|
(name "perl-file-zglob")
|
||||||
|
(version "0.11")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "http://search.cpan.org/dist/File-Zglob")
|
||||||
|
(synopsis "Extended Unix style glob functionality")
|
||||||
|
(description "@code{File::Zglob} provides a traditional Unix @code{glob}
|
||||||
|
functionality; it returns a list of file names that match the given pattern.
|
||||||
|
For instance, it supports the @code{**/*.pm} form.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-getopt-long-descriptive
|
(define-public perl-getopt-long-descriptive
|
||||||
(package
|
(package
|
||||||
(name "perl-getopt-long-descriptive")
|
(name "perl-getopt-long-descriptive")
|
||||||
|
|
Loading…
Reference in New Issue