gnu: Add perl-unicode-eastasianwidth.

* gnu/packages/perl.scm (perl-unicode-eastasianwidth): New variable.

Change-Id: I3b9eb2a15bf77aa64109dbd2836ac1d71aa509f0
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
gemmaro 2024-12-20 00:10:33 +09:00 committed by Ludovic Courtès
parent 103f698658
commit 853c091e2c
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -12544,6 +12544,27 @@ Unicode data.")
;; license. ;; license.
(license (list (package-license perl) license:expat)))) (license (list (package-license perl) license:expat))))
(define-public perl-unicode-eastasianwidth
(package
(name "perl-unicode-eastasianwidth")
(version "12.0")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/A/AU/AUDREYT/Unicode-EastAsianWidth-"
version ".tar.gz"))
(sha256
(base32 "1x0gm5akah6x1ypykipywlm2hi95mhqjrnipc5zggragdj9gsnra"))))
(build-system perl-build-system)
(home-page "https://metacpan.org/release/Unicode-EastAsianWidth")
(synopsis "East Asian Width properties")
(description
"This module provides user-defined Unicode properties that deal with width
status of East Asian characters, as specified in
@url{https://www.unicode.org/reports/tr11/,Unicode® Standard Annex #11}.")
(license license:cc0)))
(define-public perl-unicode-linebreak (define-public perl-unicode-linebreak
(package (package
(name "perl-unicode-linebreak") (name "perl-unicode-linebreak")