From 853c091e2c8d5e19c878714227ac4edc77d8972f Mon Sep 17 00:00:00 2001 From: gemmaro Date: Fri, 20 Dec 2024 00:10:33 +0900 Subject: [PATCH] gnu: Add perl-unicode-eastasianwidth. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/perl.scm (perl-unicode-eastasianwidth): New variable. Change-Id: I3b9eb2a15bf77aa64109dbd2836ac1d71aa509f0 Signed-off-by: Ludovic Courtès --- gnu/packages/perl.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 417a811b887..dd7383c75a2 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -12544,6 +12544,27 @@ Unicode data.") ;; license. (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 (package (name "perl-unicode-linebreak")