gnu: Add r-prereg.

* gnu/packages/cran.scm (r-prereg): New variable.
This commit is contained in:
Lars-Dominik Braun 2021-03-12 14:06:18 +01:00
parent 456355c253
commit 8a51be3cdd
No known key found for this signature in database
GPG key ID: 421377011A378446

View file

@ -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)))