diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-20 21:03:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-20 21:26:30 +0100 |
commit | a3569a327a1d73f24ac5028552ecef449e069906 (patch) | |
tree | 3a87f47093b319943fb7c504cddbd5ff55cdac9c | |
parent | ccf3cafa4cc8b82528dea709a867323b8b1f4695 (diff) | |
download | guix-a3569a327a1d73f24ac5028552ecef449e069906.tar.gz guix-a3569a327a1d73f24ac5028552ecef449e069906.zip |
gnu: Add r-bdsmatrix.
* gnu/packages/cran.scm (r-bdsmatrix): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ac71831879..dfa9b1e99b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2361,6 +2361,26 @@ and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and ;; Any version of the LGPL. (license license:lgpl3+))) +(define-public r-bdsmatrix + (package + (name "r-bdsmatrix") + (version "1.3-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "bdsmatrix" version)) + (sha256 + (base32 + "17ddvz4gnih7rx0lr1gzk280xyh6x796cf2x794dvplpiiq83skh")))) + (properties `((upstream-name . "bdsmatrix"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/bdsmatrix/") + (synopsis "Routines for block diagonal symmetric matrices") + (description + "This package provides procedures to work with block diagonal symmetric +matrices, a special case of sparse matrices.") + (license license:lgpl2.0))) + (define-public r-bbmle (package (name "r-bbmle") |