diff options
author | Roel Janssen <roel@gnu.org> | 2020-11-18 16:59:15 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-09 12:12:25 +0100 |
commit | b7d1ea7bfac41425620b293c40c242f765f69d51 (patch) | |
tree | d63226afda65e6d4be415231b73610b7fb9de58f /gnu/packages/cran.scm | |
parent | aeb1d56f8f5855ed13fa3c11658d618b80ca0725 (diff) |
gnu: Add r-shadowtext.
* gnu/packages/cran.scm (r-shadowtext): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 25bb9d75ec3..0d5256a996f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -560,6 +560,30 @@ generalized linear, additive and interaction models to potentially high-dimensional data.") (license license:gpl2))) +(define-public r-shadowtext + (package + (name "r-shadowtext") + (version "0.0.7") + (source (origin + (method url-fetch) + (uri (cran-uri "shadowtext" version)) + (sha256 + (base32 + "1s1ip8zfr684a3ld7hvf524bhn2j31k6d1wbhh1ni0flsggv2ckf")))) + (properties `((upstream-name . "shadowtext"))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggplot2" ,r-ggplot2) + ("r-scales" ,r-scales))) + (native-inputs + `(("r-knitr" ,r-knitr))) + (home-page "https://github.com/GuangchuangYu/shadowtext/") + (synopsis "Shadow text grob and layer") + (description "This package implements @code{shadowtextGrob()} for +@code{grid} and @code{geom_shadowtext()} layer for @code{ggplot2}. +These functions draw text grob with background shadow.") + (license license:artistic2.0))) + (define-public r-sys (package (name "r-sys") |