mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add perl-path-tiny.
* gnu/packages/perl.scm (perl-path-tiny): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3cf17446cf
commit
428e4463c3
1 changed files with 25 additions and 0 deletions
|
@ -4634,6 +4634,31 @@ (define-public perl-path-class
|
|||
directory specifications in a cross-platform manner.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-path-tiny
|
||||
(package
|
||||
(name "perl-path-tiny")
|
||||
(version "0.096")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
|
||||
"Path-Tiny-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"08dmr6ijjg3dp7h9dxix0nmad0fw16c6qzs4qc0hdz500gd64sr2"))))
|
||||
(build-system perl-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; Tests require additional test modules to be packaged
|
||||
;; (native-inputs
|
||||
;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
|
||||
;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
|
||||
(inputs
|
||||
`(("perl-unicode-utf8" ,perl-unicode-utf8)))
|
||||
(home-page "http://search.cpan.org/dist/Path-Tiny")
|
||||
(synopsis "File path utility")
|
||||
(description "This module provides a small, fast utility for working
|
||||
with file paths.")
|
||||
(license asl2.0)))
|
||||
|
||||
(define-public perl-perlio-utf8_strict
|
||||
(package
|
||||
(name "perl-perlio-utf8-strict")
|
||||
|
|
Loading…
Reference in a new issue