diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-11-23 22:06:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-27 09:48:41 +0100 |
commit | 0185442003186b371d962f2e7f16cb2d184f07ce (patch) | |
tree | 4f8ab87e25b9511f157009e00be5f83ba6dd3ff9 /gnu/packages/perl.scm | |
parent | 2bc1b85ce6b3f66d31f3a3cdb4f8db897f4d313e (diff) | |
download | guix-0185442003186b371d962f2e7f16cb2d184f07ce.tar guix-0185442003186b371d962f2e7f16cb2d184f07ce.tar.gz |
gnu: Add perl-encode-hanextra.
* gnu/packages/perl.scm (perl-encode-hanextra): New variable.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index de74c6dafe..2dd6c01833 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2381,6 +2381,27 @@ encoding.") also known as JIS 2000.") (license (package-license perl)))) +(define-public perl-encode-hanextra + (package + (name "perl-encode-hanextra") + (version "0.23") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/" + "Encode-HanExtra-" version ".tar.gz")) + (sha256 + (base32 + "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Encode-HanExtra") + (synopsis "Additional Chinese encodings") + (description "This Perl module provides Chinese encodings that are not +part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\", +\"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and +\"UNISYS\".") + (license expat))) + (define-public perl-env-path (package (name "perl-env-path") |