From 90f282cc5a9fb369cbb650f847917ccf956e8276 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 16 Nov 2020 12:56:25 +0100 Subject: [PATCH 1/9] gnu: Add r-prereg. * gnu/packages/cran.scm (r-prereg): New variable. --- gnu/packages/cran.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 64e139c243..eb8ce230d4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -24657,3 +24657,26 @@ orthogonal coordinate systems: cartesian, polar, spherical, cylindrical, parabolic or user defined by custom scale factors.") (license license:gpl3))) +(define-public r-prereg + (package + (name "r-prereg") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "prereg" version)) + (sha256 + (base32 + "1jhlgp7ajq6mx7gn4kf3b7wqzs3v0678pa1r6p4mgvvynic8rnqj")))) + (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))) + -- 2.25.1