diff options
author | Ricardo Wurmus <[email protected]> | 2024-12-01 10:20:57 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2024-12-01 10:26:38 +0100 |
commit | 5531485c5d5096ec9a8bb6338d95715b31b3d36d (patch) | |
tree | 4636b477272d804b31463360bce8081a6fd671c0 | |
parent | f228b0173807de86394623b1bdc0340caff9a35b (diff) |
gnu: Add r-rcdt.
* gnu/packages/cran.scm (r-rcdt): New variable.
Change-Id: I83b00c95f2c3c6f82e9e9cf8f173ba087e1c29e0
-rw-r--r-- | gnu/packages/cran.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 494624e8b0..a201005f85 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -35062,6 +35062,36 @@ and redundant generator elimination. All functions can use exact infinite-precision rational arithmetic.") (license license:gpl2))) +(define-public r-rcdt + (package + (name "r-rcdt") + (version "1.3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "RCDT" version)) + (sha256 + (base32 "1k27kydqzxqdhjbygq5a8mdhwlvbc32j1hg4vr223rwwc94864w6")))) + (properties `((upstream-name . "RCDT"))) + (build-system r-build-system) + (propagated-inputs (list r-bh + r-colorsgen + r-gplots + r-polychrome + r-rcpp + r-rcpparmadillo + r-rgl + r-rvcg)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/stla/RCDT") + (synopsis "Fast 2D constrained Delaunay triangulation") + (description + "This package performs 2D Delaunay triangulation, constrained or +unconstrained, with the help of the C++ library CDT. A function to plot the +triangulation is provided. The constrained Delaunay triangulation has +applications in geographic information systems.") + (license license:gpl3))) + (define-public r-rxnat (package (name "r-rxnat") |