diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 14:55:18 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 14:58:32 +0100 |
commit | 5ba865a73fbb1a23b2b82b3015a4171b3d9fe3c4 (patch) | |
tree | 2eb6c182ca3b82ee47f4487cf9afcdab0c6c2472 /gnu/packages/cran.scm | |
parent | 5a0beca3aac7d22325229c8c044d23f9b038c20b (diff) | |
download | patches-5ba865a73fbb1a23b2b82b3015a4171b3d9fe3c4.tar patches-5ba865a73fbb1a23b2b82b3015a4171b3d9fe3c4.tar.gz |
gnu: Add r-gee.
* gnu/packages/cran.scm (r-gee): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 06c793d3cb..2101cd51c6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7851,6 +7851,27 @@ analysis.") ;; Either version of the GPL. (license (list license:gpl2 license:gpl3)))) +(define-public r-gee + (package + (name "r-gee") + (version "4.13-20") + (source + (origin + (method url-fetch) + (uri (cran-uri "gee" version)) + (sha256 + (base32 + "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak")))) + (properties `((upstream-name . "gee"))) + (build-system r-build-system) + (native-inputs + `(("gfortran" ,gfortran))) + (home-page "https://cran.r-project.org/web/packages/gee/") + (synopsis "Generalized estimation equation solver") + (description + "This package provides a solver for generalized estimation equations.") + (license license:gpl2))) + (define-public r-dvmisc (package (name "r-dvmisc") |