summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 16:47:25 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:19 +0100
commit7be144c8f2811422d290e84da3077d30b8516367 (patch)
tree9defc13fa34d360e9a5931dbb3b54d07bfb850b0
parent952d2905c145663f6597231a4403122c4e6c8a14 (diff)
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
-rw-r--r--gnu/packages/cran.scm25
-rw-r--r--gnu/packages/statistics.scm24
2 files changed, 25 insertions, 24 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b91dbe61ac6..766afa65500 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -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")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 66b8d7578d9..31416969ada 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")