diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-10 21:38:47 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 01:03:21 +0100 |
commit | 4f72a349f14bf14711afc9f041a6d2aa61b4668a (patch) | |
tree | 24c5155ececf243fa3b744f1f53023afd968109c /gnu | |
parent | b2dcc4e923516c4b8f721731ebe7e853c36991d4 (diff) | |
download | guix-4f72a349f14bf14711afc9f041a6d2aa61b4668a.tar.gz guix-4f72a349f14bf14711afc9f041a6d2aa61b4668a.zip |
gnu: Add r-textshaping.
* gnu/packages/cran.scm (r-textshaping): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b26c24ad7f..f600928662 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -68,6 +68,7 @@ #:use-module (gnu packages curl) #:use-module (gnu packages databases) #:use-module (gnu packages fontutils) + #:use-module (gnu packages fribidi) #:use-module (gnu packages gcc) #:use-module (gnu packages geo) #:use-module (gnu packages ghostscript) @@ -26616,3 +26617,36 @@ look at how samples move as the number of clusters increases. This package allows you to produce clustering trees, a visualization for interrogating clusterings as resolution increases.") (license license:gpl3))) + +(define-public r-textshaping + (package + (name "r-textshaping") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "textshaping" version)) + (sha256 + (base32 + "053pbw45by96q62kjfnyc3d0ssar9svssrdqy6a09kdmdh75xdar")))) + (properties `((upstream-name . "textshaping"))) + (build-system r-build-system) + (inputs + `(("freetype" ,freetype) + ("fribidi" ,fribidi) + ("harfbuzz" ,harfbuzz) + ("zlib" ,zlib))) + (propagated-inputs + `(("r-cpp11" ,r-cpp11) + ("r-systemfonts" ,r-systemfonts))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("r-knitr" ,r-knitr))) + (home-page "https://github.com/r-lib/textshaping") + (synopsis "Bindings to the HarfBuzz and Fribidi libraries for text shaping") + (description + "This package provides access to the text shaping functionality in the +HarfBuzz library and the bidirectional algorithm in the Fribidi library. This +is a low-level utility package mainly for graphic devices that expands upon +the font tool-set provided by the @code{systemfonts} package.") + (license license:expat))) |