gnu: Add r-rjags.

* gnu/packages/cran.scm (r-rjags): New variable.
master
Ricardo Wurmus 2018-11-14 14:32:54 +01:00 committed by Ricardo Wurmus
parent 0bca8643a2
commit 0c92f3734e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -4728,6 +4728,32 @@ Extract argument descriptions and other parts of the help pages of
functions.")
(license license:gpl2+)))
(define-public r-rjags
(package
(name "r-rjags")
(version "4-8")
(source
(origin
(method url-fetch)
(uri (cran-uri "rjags" version))
(sha256
(base32
"17xmjksj69f9wk4x71jxk4cgiqhaf2fj6bjm0mgzp4qln5x84a8m"))))
(build-system r-build-system)
(propagated-inputs
`(("r-coda" ,r-coda)))
(inputs
`(("jags" ,jags)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "http://mcmc-jags.sourceforge.net")
(synopsis "Bayesian graphical models using MCMC")
(description
"This package provides an R interface to the JAGS MCMC library. JAGS is
Just Another Gibbs Sampler. It is a program for analysis of Bayesian
hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
(license license:gpl2)))
(define-public r-rdpack
(package
(name "r-rdpack")