gnu: Add r-bookdown.

* gnu/packages/bioinformatics.scm (r-bookdown): New variable.
This commit is contained in:
Roel Janssen 2017-04-28 10:09:31 +02:00
parent 833361a483
commit 2abfc5b827
No known key found for this signature in database
GPG key ID: C3EC1DCA843072E1

View file

@ -6092,6 +6092,28 @@ (define-public r-biocviews
also known as views, in a controlled vocabulary.")
(license license:artistic2.0)))
(define-public r-bookdown
(package
(name "r-bookdown")
(version "0.3")
(source (origin
(method url-fetch)
(uri (cran-uri "bookdown" version))
(sha256
(base32
"0r9bchzg7im6psc3jphvshzbidc5bv5xaih1qg7b5518jy4iyvb9"))))
(build-system r-build-system)
(propagated-inputs
`(("r-htmltools" ,r-htmltools)
("r-knitr" ,r-knitr)
("r-rmarkdown" ,r-rmarkdown)
("r-yaml" ,r-yaml)))
(home-page "https://github.com/rstudio/bookdown")
(synopsis "Authoring books and technical documents with R markdown")
(description "This package provides output formats and utilities for
authoring books and technical documents with R Markdown.")
(license license:gpl3)))
(define-public r-biocstyle
(package
(name "r-biocstyle")