guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/08: gnu: Add r-rstantools.


From: guix-commits
Subject: 05/08: gnu: Add r-rstantools.
Date: Wed, 26 Feb 2020 04:13:10 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 70af390f62262ca52173d908a9ffeb334f0e4589
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Wed Feb 26 10:12:02 2020 +0100

    gnu: Add r-rstantools.
    
    * gnu/packages/cran.scm (r-rstantools): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 7d53e5e..618f892 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -20409,3 +20409,30 @@ application framework and works with the output of 
MCMC programs written in
 any programming language (and has extended functionality for Stan models fit
 using the @code{rstan} and @code{rstanarm} packages).")
     (license license:gpl3+)))
+
+(define-public r-rstantools
+  (package
+    (name "r-rstantools")
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rstantools" version))
+       (sha256
+        (base32
+         "1il0pn4ksbdkska5fmhvgaicvwnnc6cs08g6ags9fj1xkjiqmrsa"))))
+    (properties `((upstream-name . "rstantools")))
+    (build-system r-build-system)
+    (inputs `(("pandoc" ,ghc-pandoc)))
+    (propagated-inputs
+     `(("r-desc" ,r-desc)
+       ("r-rcpp" ,r-rcpp)))
+    (home-page "https://mc-stan.org/rstantools/";)
+    (synopsis "Tools for developing R packages interfacing with Stan")
+    (description
+     "This package provides various tools for developers of R packages
+interfacing with @url{https://mc-stan.org, Stan}, including functions to set
+up the required package structure, S3 generics and default methods to unify
+function naming across Stan-based R packages, and vignettes with
+recommendations for developers.")
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]