gnu: Add r-xfun.

* gnu/packages/cran.scm (r-xfun): New variable.
This commit is contained in:
Ricardo Wurmus 2018-02-13 14:42:15 +01:00
parent 77737e0354
commit f6d2b45ca8
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 19 additions and 0 deletions

View File

@ -2072,3 +2072,22 @@ around the relevant area. This work is based on the @code{ggplot2} and
dendrogram panes, and the placing of factor variables in the sides of the dendrogram panes, and the placing of factor variables in the sides of the
heatmap.") heatmap.")
(license (list license:gpl2 license:gpl3)))) (license (list license:gpl2 license:gpl3))))
(define-public r-xfun
(package
(name "r-xfun")
(version "0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "xfun" version))
(sha256
(base32
"1sm51gmwgw876d6d1q8smxmfgfh6zsnykfx8qp8z6jmh0fvd89pj"))))
(build-system r-build-system)
(home-page "https://github.com/yihui/xfun")
(synopsis "Miscellaneous functions")
(description
"This package provides miscellaneous functions commonly used in other
packages maintained by Yihui Xie.")
(license license:expat)))