diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-02-22 18:29:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-02-22 18:48:30 +0100 |
commit | 63e8b845282e5750bfe5cc1466af31506482e377 (patch) | |
tree | 821b01cb5b02733dbe302eca23bd6ead1ca13d06 /gnu | |
parent | 630a059b1b66cdaf9a3e722fd6b4b20fd1973514 (diff) | |
download | guix-63e8b845282e5750bfe5cc1466af31506482e377.tar.gz guix-63e8b845282e5750bfe5cc1466af31506482e377.zip |
gnu: Add r-dynutils.
* gnu/packages/cran.scm (r-dynutils): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 2ce20880e0..25c5cb2e60 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7643,6 +7643,41 @@ contain lags, diffs and missing values.") ;; Any GPL version. (license license:gpl2+))) +(define-public r-dynutils + (package + (name "r-dynutils") + (version "1.0.9") + (source + (origin + (method url-fetch) + (uri (cran-uri "dynutils" version)) + (sha256 + (base32 "1pcj4igaw1g898xb42kcpzfmqy80xai5ki5bpnkf8hg738wm00qz")))) + (properties `((upstream-name . "dynutils"))) + (build-system r-build-system) + (propagated-inputs + (list r-assertthat + r-crayon + r-desc + r-dplyr + r-magrittr + r-matrix + r-proxyc + r-purrr + r-rcpp + r-remotes + r-stringr + r-tibble)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/dynverse/dynutils") + (synopsis "Common functionality for the dynverse packages") + (description + "This package provides common functionality for the +@url{https://dynverse.org,dynverse} packages. dynverse is created to support +the development, execution, and benchmarking of trajectory inference +methods.") + (license license:expat))) + (define-public r-catdap (package (name "r-catdap") |