mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 07:58:01 -05:00
gnu: Add r-prereg.
* gnu/packages/cran.scm (r-prereg): New variable.
This commit is contained in:
parent
456355c253
commit
8a51be3cdd
1 changed files with 24 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
||||||
;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
|
;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
|
||||||
;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
|
;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
|
||||||
;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
|
;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
|
||||||
;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
|
;;; Copyright © 2020, 2021 Lars-Dominik Braun <ldb@leibniz-psychology.org>
|
||||||
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||||||
;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
|
;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
|
||||||
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
|
@ -27290,3 +27290,26 @@ (define-public r-pkgdown
|
||||||
README file, and more to HTML making it easy to share information about your
|
README file, and more to HTML making it easy to share information about your
|
||||||
package online.")
|
package online.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-prereg
|
||||||
|
(package
|
||||||
|
(name "r-prereg")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "prereg" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0bck13iiaxwpqh0rd45mp1s5d8z62ggg0wa7rmyi8a65aywiypsi"))))
|
||||||
|
(properties `((upstream-name . "prereg")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-rmarkdown" ,r-rmarkdown)))
|
||||||
|
(home-page "https://github.com/crsh/prereg")
|
||||||
|
(synopsis
|
||||||
|
"R Markdown Templates to preregister Scientific Studies")
|
||||||
|
(description
|
||||||
|
"This package provides a collection of templates to author
|
||||||
|
preregistration documents for scientific studies in PDF format.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
Loading…
Reference in a new issue