mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add r-packcircles.
* gnu/packages/cran.scm (r-packcircles): New variable.
This commit is contained in:
parent
5d719fe608
commit
5ce5e49c10
1 changed files with 22 additions and 0 deletions
|
@ -27826,3 +27826,25 @@ (define-public r-readtext
|
||||||
@code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
|
@code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
|
||||||
@code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
|
@code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-packcircles
|
||||||
|
(package
|
||||||
|
(name "r-packcircles")
|
||||||
|
(version "0.3.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "packcircles" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"05pv5c4k4njkr0xw6i6ksiy34hcyx2lbiqpv5gxw81yrkm0rxfyk"))))
|
||||||
|
(properties `((upstream-name . "packcircles")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs `(("r-rcpp" ,r-rcpp)))
|
||||||
|
(native-inputs `(("r-knitr" ,r-knitr)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/mbedward/packcircles")
|
||||||
|
(synopsis "Circle Packing")
|
||||||
|
(description
|
||||||
|
"Algorithms to find arrangements of non-overlapping circles.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue