mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add File-Find-Rule.
* gnu/packages/perl.scm (perl-file-find-rule): New variable.
This commit is contained in:
parent
f57c768639
commit
e91d4accd1
1 changed files with 23 additions and 0 deletions
|
@ -300,6 +300,29 @@ (define-public perl-exporter-lite
|
|||
"Exporter-Lite-" version))
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-file-find-rule
|
||||
(package
|
||||
(name "perl-file-find-rule")
|
||||
(version "0.33")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
|
||||
"File-Find-Rule-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0w73b4jr2fcrd74a1w3b2jryq3mqzc8z5mk7ia9p85xn3qmpa5r4"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-text-glob" ,perl-text-glob)
|
||||
("perl-number-compare" ,perl-number-compare)))
|
||||
(home-page "http://search.cpan.org/dist/File-Find-Rule")
|
||||
(synopsis "Alternative interface to File::Find")
|
||||
(description "File::Find::Rule is a friendlier interface to File::Find.
|
||||
It allows you to build rules which specify the desired files and
|
||||
directories.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-file-list
|
||||
(package
|
||||
(name "perl-file-list")
|
||||
|
|
Loading…
Reference in a new issue