diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-19 14:55:11 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-19 14:55:11 +0200 |
commit | dc889e85a98ee891bd5cc30849ee286e2ae03c98 (patch) | |
tree | 41d46c5b20f92ade17e9f92c85c185cf27cfe769 /gnu/packages/bioconductor.scm | |
parent | d0c96a78edf32409ef39cec6986c131c280f9ec5 (diff) | |
download | guix-dc889e85a98ee891bd5cc30849ee286e2ae03c98.tar.gz guix-dc889e85a98ee891bd5cc30849ee286e2ae03c98.zip |
gnu: Add r-dyndoc.
* gnu/packages/bioconductor.scm (r-dyndoc): New variable.
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 7b633f4bad..05123b5506 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -5008,6 +5008,25 @@ Beta-Binomial distributions.") ;; Any version of the GPL (license (list license:gpl2+ license:gpl3+)))) +(define-public r-dyndoc + (package + (name "r-dyndoc") + (version "1.78.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "DynDoc" version)) + (sha256 + (base32 + "16cb4pby6ja0xy8ygbgr6zfbyp4agyhlds5sayc5ryq50vafykah")))) + (properties `((upstream-name . "DynDoc"))) + (build-system r-build-system) + (home-page "https://bioconductor.org/packages/DynDoc") + (synopsis "Dynamic document tools") + (description + "This package provides a set of functions to create and interact with +dynamic documents and vignettes.") + (license license:artistic2.0))) + (define-public r-bluster (package (name "r-bluster") |