summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAntero Mejr <antero@mailbox.org>2023-06-04 17:42:30 +0000
committerDanny Milosavljevic <dannym@friendly-machines.com>2024-12-22 13:17:59 +0100
commitfd9599f2b92263337f7821aad5669fd728d34da2 (patch)
tree90deecf7e2ba875c3ea81ab90a452d58d2a753b4 /gnu
parent90cb69dc9203eddaad688dc02a14ed4ead9bf625 (diff)
gnu: Add perl-text-iconv.
* gnu/packages/perl.scm (perl-text-iconv): New variable. Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/perl.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 2fe08d6df54..320c3377014 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -11703,6 +11703,29 @@ you want to do full file globbing use the File::Glob module instead.")
11703@url{http://haml.info/docs/yardoc/file.REFERENCE.html} specification.") 11703@url{http://haml.info/docs/yardoc/file.REFERENCE.html} specification.")
11704 (license license:artistic2.0))) 11704 (license license:artistic2.0)))
11705 11705
11706(define-public perl-text-iconv
11707 (package
11708 (name "perl-text-iconv")
11709 (version "1.7")
11710 (source (origin
11711 (method url-fetch)
11712 (uri (string-append
11713 "mirror://cpan/authors/id/M/MP/MPIOTR/Text-Iconv-" version
11714 ".tar.gz"))
11715 (sha256
11716 (base32
11717 "1hymsbkjkl43wg74p7hgpyjl8yx1chc9g25spj9l7lq9wzavg02v"))))
11718 (build-system perl-build-system)
11719 (inputs (list libiconv))
11720 (home-page "https://metacpan.org/release/Text-Iconv")
11721 (synopsis "Perl interface to iconv() codeset conversion function")
11722 (description
11723 "This module provides a Perl interface to the @code{iconv()} codeset
11724conversion function, as defined by the Single UNIX Specification. For
11725more details see the POD documentation embedded in the file @file{Iconv.pm},
11726which will also be installed as @code{Text::Iconv(3)} man page.")
11727 (license license:perl-license)))
11728
11706(define-public perl-text-neattemplate 11729(define-public perl-text-neattemplate
11707 (package 11730 (package
11708 (name "perl-text-neattemplate") 11731 (name "perl-text-neattemplate")