1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-20 16:15:54 +02:00

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

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

Change-Id: I884f50de0b1f6c4d7b398456a91605f80c0dc84e
This commit is contained in:
Ricardo Wurmus
2026-02-16 18:42:14 +01:00
committed by Andreas Enge
parent efea94fa45
commit 8861b359ed
2 changed files with 23 additions and 23 deletions
+23
View File
@@ -10526,6 +10526,29 @@ tokenization of R code, and helpers for interacting with the tokenized
representation of R code.")
(license license:expat)))
(define-public r-sparsem
(package
(name "r-sparsem")
(version "1.84-2")
(source (origin
(method url-fetch)
(uri (cran-uri "SparseM" version))
(sha256
(base32
"0rc6x466jhalb6baxxhffmmcpi03nndvvighp696rrvrhsxzv015"))))
(properties
`((upstream-name . "SparseM")))
(native-inputs
(list gfortran r-knitr))
(build-system r-build-system)
(home-page "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html")
(synopsis "Sparse linear algebra")
(description
"This package provides some basic linear algebra functionality for sparse
matrices. It includes Cholesky decomposition and backsolving as well as
standard R subsetting and Kronecker products.")
(license license:gpl2+)))
(define-public r-spatial
(package
(name "r-spatial")
-23
View File
@@ -1660,29 +1660,6 @@ Features:
@end itemize")
(license license:asl2.0)))
(define-public r-sparsem
(package
(name "r-sparsem")
(version "1.84-2")
(source (origin
(method url-fetch)
(uri (cran-uri "SparseM" version))
(sha256
(base32
"0rc6x466jhalb6baxxhffmmcpi03nndvvighp696rrvrhsxzv015"))))
(properties
`((upstream-name . "SparseM")))
(native-inputs
(list gfortran r-knitr))
(build-system r-build-system)
(home-page "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html")
(synopsis "Sparse linear algebra")
(description
"This package provides some basic linear algebra functionality for sparse
matrices. It includes Cholesky decomposition and backsolving as well as
standard R subsetting and Kronecker products.")
(license license:gpl2+)))
(define-public r-synchronicity
(package
(name "r-synchronicity")