me
/
guix
Archived
1
0
Fork 0

gnu: Add r-packcircles.

* gnu/packages/cran.scm (r-packcircles): New variable.
master
Lars-Dominik Braun 2021-03-15 10:31:20 +01:00
parent 5d719fe608
commit 5ce5e49c10
No known key found for this signature in database
GPG Key ID: 421377011A378446
1 changed files with 22 additions and 0 deletions

View File

@ -27826,3 +27826,25 @@ and formatted text files with additional meta-data, such including @code{.csv},
@code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
@code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
(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)))