diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 20:35:17 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 20:36:51 +0100 |
commit | c30be23a6d97f356ebfb1dbb81f010e291d51212 (patch) | |
tree | 4fbfd7252defa0016c8306c6b7ad4ef5bfba029e /gnu | |
parent | 761c097ff5333501634f360718090b52680e4b7c (diff) | |
download | patches-c30be23a6d97f356ebfb1dbb81f010e291d51212.tar patches-c30be23a6d97f356ebfb1dbb81f010e291d51212.tar.gz |
gnu: Add r-untb.
* gnu/packages/cran.scm (r-untb): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d8a1233bea..b638e46cf5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -11954,3 +11954,26 @@ package includes a vignette that gives a step-by-step introduction to using S4 methods.") ;; Any version of the GPL (license license:gpl2+))) + +(define-public r-untb + (package + (name "r-untb") + (version "1.7-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "untb" version)) + (sha256 + (base32 + "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6")))) + (build-system r-build-system) + (propagated-inputs + `(("r-brobdingnag" ,r-brobdingnag) + ("r-partitions" ,r-partitions) + ("r-polynom" ,r-polynom))) + (home-page "https://github.com/RobinHankin/untb.git") + (synopsis "Ecological drift under the UNTB") + (description + "This package provides numerical simulations, and visualizations, of +Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).") + (license license:gpl2+))) |