diff options
author | Roel Janssen <roel@gnu.org> | 2017-04-28 10:33:54 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2017-04-28 11:04:31 +0200 |
commit | 3bef24c968fe864b502883b6d409f99dbf6ee8f6 (patch) | |
tree | d32dbfc62435d7f7ba22b9724a90afd43407b9ff | |
parent | 68eac34974c1968653c13d14b86db26b6bf46505 (diff) | |
download | guix-3bef24c968fe864b502883b6d409f99dbf6ee8f6.tar.gz |
gnu: r-biocstyle: Update to 2.4.0.
* gnu/packages/bioinformatics.scm (r-biocstyle): [source] Update to 2.4.0. [propagated-inputs]: Add r-bookdown, r-knitr, r-rmarkdown, r-yaml.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index da1d7fdcba..0f2be45ddd 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6117,16 +6117,21 @@ authoring books and technical documents with R Markdown.") (define-public r-biocstyle (package (name "r-biocstyle") - (version "2.2.1") + (version "2.4.0") (source (origin (method url-fetch) (uri (bioconductor-uri "BiocStyle" version)) (sha256 (base32 - "0sl99xw940ixrm6v24lgaw3ljh56g59a6rdz7g160hx84z9f8n2n")))) + "1n2c8rj920wmk3q2khmjfnhn5i4b3lmhx1whnghk0zk3jf88hvbi")))) (properties `((upstream-name . "BiocStyle"))) (build-system r-build-system) + (propagated-inputs + `(("r-bookdown" ,r-bookdown) + ("r-knitr" ,r-knitr) + ("r-rmarkdown" ,r-rmarkdown) + ("r-yaml" ,r-yaml))) (home-page "http://bioconductor.org/packages/BiocStyle") (synopsis "Bioconductor formatting styles") (description "This package provides standard formatting styles for |