gnu: Add r-rvcg.

* gnu/packages/cran.scm (r-rvcg): New variable.
This commit is contained in:
Ricardo Wurmus 2023-07-29 09:45:06 +02:00
parent a27d172ee6
commit 9bf147945e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -8631,6 +8631,29 @@ (define-public r-vcfr
VCF data and familiar R software.")
(license license:gpl3)))
(define-public r-rvcg
(package
(name "r-rvcg")
(version "0.22.1")
(source (origin
(method url-fetch)
(uri (cran-uri "Rvcg" version))
(sha256
(base32
"16rr2kqw7lqb7m01pwn496zf2nr25gm6wcncz44kszjzzmv2xanv"))))
(properties `((upstream-name . "Rvcg")))
(build-system r-build-system)
(propagated-inputs (list r-rcpp r-rcpparmadillo r-rcppeigen))
(home-page "https://github.com/zarquon42b/Rvcg")
(synopsis "Manipulations of triangular meshes based on the VCGLIB API")
(description
"This is a package for operations on triangular meshes based on VCGLIB.
This package integrates nicely with the R-package rgl to render the meshes
processed by Rvcg. The Visualization and Computer Graphics Library (VCG for
short) is a library for manipulation, processing and displaying with OpenGL of
triangle and tetrahedral meshes.")
(license license:gpl2+)))
(define-public r-ica
(package
(name "r-ica")