me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-encode.

* gnu/packages/perl.scm (perl-encode): New variable.
master
Raghav Gururajan 2021-06-22 09:40:30 -04:00
parent 11859117d8
commit 8ecf3db25d
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 22 additions and 0 deletions

View File

@ -3987,6 +3987,28 @@ very platform-dependent, so correct use of these functions requires
the programmer to be mindfulof the space of platform variations.")
(license license:perl-license)))
(define-public perl-encode
(package
(name "perl-encode")
(version "3.10")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
"Encode-" version ".tar.gz"))
(sha256
(base32 "1a8rwcrxxhq81jcdvdwns05c65jwr5r6bxvby6vdcr3ny5m91my2"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-exporter" ,perl-exporter)
("perl-storable" ,perl-storable)
("perl-parent" ,perl-parent)))
(home-page "https://metacpan.org/dist/Encode")
(synopsis "Character encodings in Perl")
(description "Encode module provides the interface between Perl strings and
the rest of the system. Perl strings are sequences of characters.")
(license (package-license perl))))
(define-public perl-encode-detect
(package
(name "perl-encode-detect")