summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 16:46:32 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:19 +0100
commit952d2905c145663f6597231a4403122c4e6c8a14 (patch)
treec4bbb1958db4f6237f88f2c338cb9dbc2a69f945
parent35798dfef305d50bb29e7236192ccca3087a9273 (diff)
gnu: r-rcpparmadillo: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rcpparmadillo): Move from here... * gnu/packages/cran.scm (r-rcpparmadillo): ...to here. Change-Id: I73df5cfc6eb2a4b10d94b047048b364ab8e59fe2
-rw-r--r--gnu/packages/cran.scm29
-rw-r--r--gnu/packages/statistics.scm29
2 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 30ebee16d8b..b91dbe61ac6 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6710,6 +6710,35 @@ designed by Cynthia Brewer as described at http://colorbrewer2.org")
;; Includes code licensed under bsd-4
(license license:asl2.0)))
+(define-public r-rcpparmadillo
+ (package
+ (name "r-rcpparmadillo")
+ (version "15.2.3-1")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "RcppArmadillo" version))
+ (sha256
+ (base32
+ "1wsnhraadhf3lna9ry21mad2802s1czgznhf179f8f8l00r4rfsv"))))
+ (properties `((upstream-name . "RcppArmadillo")))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-rcpp))
+ (native-inputs (list r-tinytest))
+ (home-page "https://github.com/RcppCore/RcppArmadillo")
+ (synopsis "Rcpp integration for the Armadillo linear algebra library")
+ (description
+ "Armadillo is a templated C++ linear algebra library that aims towards a
+good balance between speed and ease of use. Integer, floating point and
+complex numbers are supported, as well as a subset of trigonometric and
+statistics functions. Various matrix decompositions are provided through
+optional integration with LAPACK and ATLAS libraries. This package includes
+the header files from the templated Armadillo library.")
+ ;; Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp
+ ;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
+ ;; later, as is the rest of 'Rcpp'.
+ (license license:gpl2+)))
+
(define-public r-reshape2
(package
(name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 5c6e82796da..66b8d7578d9 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1823,35 +1823,6 @@ informative error messages when it's not available.")
disk (or a connection).")
(license license:gpl2+)))
-(define-public r-rcpparmadillo
- (package
- (name "r-rcpparmadillo")
- (version "15.2.3-1")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "RcppArmadillo" version))
- (sha256
- (base32
- "1wsnhraadhf3lna9ry21mad2802s1czgznhf179f8f8l00r4rfsv"))))
- (properties `((upstream-name . "RcppArmadillo")))
- (build-system r-build-system)
- (propagated-inputs
- (list r-rcpp))
- (native-inputs (list r-tinytest))
- (home-page "https://github.com/RcppCore/RcppArmadillo")
- (synopsis "Rcpp integration for the Armadillo linear algebra library")
- (description
- "Armadillo is a templated C++ linear algebra library that aims towards a
-good balance between speed and ease of use. Integer, floating point and
-complex numbers are supported, as well as a subset of trigonometric and
-statistics functions. Various matrix decompositions are provided through
-optional integration with LAPACK and ATLAS libraries. This package includes
-the header files from the templated Armadillo library.")
- ;; Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp
- ;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
- ;; later, as is the rest of 'Rcpp'.
- (license license:gpl2+)))
-
(define-public r-rprojroot
(package
(name "r-rprojroot")