diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 15:21:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 16:18:41 +0100 |
commit | f24429682252b43654f152419f62cb342437b806 (patch) | |
tree | 9ab778bd4c8bc0d545b5e430bf184896465a7210 /gnu/packages/cran.scm | |
parent | c5f033e0f6f6e1df2ddc76a8bf799be3e062e5eb (diff) |
gnu: Add r-utf8.
* gnu/packages/cran.scm (r-utf8): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4d4d3edf3c..f5e46c1814 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2114,3 +2114,23 @@ heatmap.") "This package provides miscellaneous functions commonly used in other packages maintained by Yihui Xie.") (license license:expat))) + +(define-public r-utf8 + (package + (name "r-utf8") + (version "1.1.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "utf8" version)) + (sha256 + (base32 + "03s4j6059q0nly68vpk6wy3p3f5ypakw93fj35kzd82b4z1r9cs3")))) + (build-system r-build-system) + (home-page "https://github.com/patperry/r-utf8") + (synopsis "Unicode text processing") + (description + "This package provides tools to process and print UTF-8 encoded +international text (Unicode). Input, validate, normalize, encode, format, and +display.") + (license license:asl2.0))) |