summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 18:37:14 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:22 +0100
commitde5988f5d46b26ea892df38d040d4c6dbb2aa75a (patch)
tree1e348325db2bb0ec8b6ff8d8f36b75f20890fd86
parentf82a5e3a0c2ddf3a5dfe5e59ea624cd4a4ec567b (diff)
gnu: r-snow: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-snow): Move from here... * gnu/packages/cran.scm (r-snow): ...to here. Change-Id: Idec2db0264ae8ce666596be3fa0427568249b591
-rw-r--r--gnu/packages/cran.scm21
-rw-r--r--gnu/packages/statistics.scm21
2 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b350039aaa9..64eecbd0438 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10456,6 +10456,27 @@ notably the skew-t family, and provides related statistical methods for data
fitting and diagnostics, in the univariate and the multivariate case.")
(license license:gpl2+)))
+(define-public r-snow
+ (package
+ (name "r-snow")
+ (version "0.4-4")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "snow" version))
+ (sha256
+ (base32
+ "1j8kvf3imxijsqkdjz4i9s7qggfxqrpas46y5wz6za92y937yn44"))))
+ (build-system r-build-system)
+ (home-page "https://cran.r-project.org/web/packages/snow")
+ (synopsis "Support for simple parallel computing in R")
+ (description
+ "The snow package provides support for simple parallel computing on a
+network of workstations using R. A master R process calls @code{makeCluster}
+to start a cluster of worker processes; the master process then uses functions
+such as @code{clusterCall} and @code{clusterApply} to execute R code on the
+worker processes and collect and return the results on the master.")
+ (license (list license:gpl2+ license:gpl3+))))
+
(define-public r-snowflakeauth
(package
(name "r-snowflakeauth")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 75d19aa17d3..6b4422157b7 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1660,27 +1660,6 @@ Features:
@end itemize")
(license license:asl2.0)))
-(define-public r-snow
- (package
- (name "r-snow")
- (version "0.4-4")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "snow" version))
- (sha256
- (base32
- "1j8kvf3imxijsqkdjz4i9s7qggfxqrpas46y5wz6za92y937yn44"))))
- (build-system r-build-system)
- (home-page "https://cran.r-project.org/web/packages/snow")
- (synopsis "Support for simple parallel computing in R")
- (description
- "The snow package provides support for simple parallel computing on a
-network of workstations using R. A master R process calls @code{makeCluster}
-to start a cluster of worker processes; the master process then uses functions
-such as @code{clusterCall} and @code{clusterApply} to execute R code on the
-worker processes and collect and return the results on the master.")
- (license (list license:gpl2+ license:gpl3+))))
-
(define-public r-sparsem
(package
(name "r-sparsem")