gnu: Add r-matrix.

* gnu/packages/statistics.scm (r-matrix): New variable.
This commit is contained in:
Ricardo Wurmus 2016-09-21 22:45:25 +02:00 committed by Ricardo Wurmus
parent ad34f0ac96
commit 092197a548
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 0 deletions

View File

@ -381,6 +381,28 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
'citation(\"Rcpp\")' for details on these last two.")
(license license:gpl2+)))
(define-public r-matrix
(package
(name "r-matrix")
(version "1.2-7")
(source
(origin
(method url-fetch)
(uri (cran-uri "Matrix" version))
(sha256
(base32
"18x3mdq5cdhbk1lw5cj7vbr41lk8w9p4i5kzh8wslgq6p3d9ac3c"))))
(properties `((upstream-name . "Matrix")))
(build-system r-build-system)
(propagated-inputs
`(("r-lattice" ,r-lattice)))
(home-page "http://Matrix.R-forge.R-project.org/")
(synopsis "Sparse and dense matrix classes and methods")
(description
"This package provides classes and methods for dense and sparse matrices
and operations on them using LAPACK and SuiteSparse.")
(license license:gpl2+)))
(define-public r-mgcv
(package
(name "r-mgcv")