mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add String::Print.
* gnu/packages/perl.scm (perl-string-print): New variable.
This commit is contained in:
parent
e92468d803
commit
c47b85de0c
1 changed files with 22 additions and 0 deletions
|
@ -4365,6 +4365,28 @@ (define-public perl-string-rewriteprefix
|
|||
known prefixes.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-string-print
|
||||
(package
|
||||
(name "perl-string-print")
|
||||
(version "0.15")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
|
||||
"String-Print-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
|
||||
(home-page "http://search.cpan.org/dist/String-Print")
|
||||
(synopsis "String printing alternatives to printf")
|
||||
(description
|
||||
"This module inserts values into (translated) strings. It provides
|
||||
@code{printf} and @code{sprintf} alternatives via both an object-oriented and
|
||||
a functional interface.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-sub-exporter
|
||||
(package
|
||||
(name "perl-sub-exporter")
|
||||
|
|
Loading…
Reference in a new issue