guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit ad4d6b3d134a9aaee820ecec281c7d68f4233d2b
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:47:25 2026 +0100
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
---
gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
gnu/packages/statistics.scm | 24 ------------------------
2 files changed, 25 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6fd0061473..588e23c340 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6692,6 +6692,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")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index a8de802e09..bd8cf80228 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -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")