1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-18 16:20:28 +02:00

gnu: r-rcppeigen: Move to (gnu packages cran).

* gnu/packages/statistics.scm (r-rcppeigen): Move from here...
* gnu/packages/cran.scm (r-rcppeigen): ...to here.

Change-Id: I80f7ec5a173c88f651da85693fd622f801f57e90
This commit is contained in:
Ricardo Wurmus
2026-02-16 16:47:25 +01:00
committed by Andreas Enge
parent 952d2905c1
commit 7be144c8f2
2 changed files with 25 additions and 24 deletions

View File

@@ -6739,6 +6739,31 @@ the header files from the templated Armadillo library.")
;; later, as is the rest of 'Rcpp'.
(license license:gpl2+)))
(define-public r-rcppeigen
(package
(name "r-rcppeigen")
(version "0.3.4.0.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "RcppEigen" version))
(sha256
(base32
"1fs2wmsq2s6nzhkrx59li4x1zvcjhk9mhmc2pdz8pm4z2ai7pbgc"))))
(properties `((upstream-name . "RcppEigen")))
(build-system r-build-system)
(propagated-inputs
(list r-rcpp))
(home-page "http://eigen.tuxfamily.org")
(synopsis "Rcpp integration for the Eigen templated linear algebra library")
(description
"This package provides an integration of Eigen in R using a C++ template
library for linear algebra: matrices, vectors, numerical solvers and related
algorithms. It supports dense and sparse matrices on integer, floating point
and complex numbers, decompositions of such matrices, and solutions of linear
systems.")
(license license:gpl2+)))
(define-public r-reshape2
(package
(name "r-reshape2")

View File

@@ -2547,30 +2547,6 @@ of the points.")
;; Any GPL version
(license (list license:gpl2+ license:gpl3+))))
(define-public r-rcppeigen
(package
(name "r-rcppeigen")
(version "0.3.4.0.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "RcppEigen" version))
(sha256
(base32
"1fs2wmsq2s6nzhkrx59li4x1zvcjhk9mhmc2pdz8pm4z2ai7pbgc"))))
(properties `((upstream-name . "RcppEigen")))
(build-system r-build-system)
(propagated-inputs
(list r-rcpp))
(home-page "http://eigen.tuxfamily.org")
(synopsis "Rcpp integration for the Eigen templated linear algebra library")
(description
"This package provides an integration of Eigen in R using a C++ template
library for linear algebra: matrices, vectors, numerical solvers and related algorithms.
It supports dense and sparse matrices on integer, floating point and complex numbers,
decompositions of such matrices, and solutions of linear systems.")
(license license:gpl2+)))
(define-public r-rcppprogress
(package
(name "r-rcppprogress")