mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add perl-mixin-linewise.
* gnu/packages/perl.scm (perl-mixin-linewise): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
77ff12c987
commit
4ca06e4c87
1 changed files with 25 additions and 0 deletions
|
@ -2979,6 +2979,31 @@ (define-public perl-mime-types
|
||||||
knowledge of Apache.")
|
knowledge of Apache.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-mixin-linewise
|
||||||
|
(package
|
||||||
|
(name "perl-mixin-linewise")
|
||||||
|
(version "0.108")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
|
||||||
|
("perl-sub-exporter" ,perl-sub-exporter)))
|
||||||
|
(home-page "http://search.cpan.org/dist/Mixin-Linewise")
|
||||||
|
(synopsis "Write your linewise code for handles; this does the rest")
|
||||||
|
(description "It's boring to deal with opening files for IO, converting
|
||||||
|
strings to handle-like objects, and all that. With
|
||||||
|
@code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
|
||||||
|
just write a method to handle handles, and methods for handling strings and
|
||||||
|
file names are added for you.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-module-build-tiny
|
(define-public perl-module-build-tiny
|
||||||
(package
|
(package
|
||||||
(name "perl-module-build-tiny")
|
(name "perl-module-build-tiny")
|
||||||
|
|
Loading…
Reference in a new issue