e2d12274c2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 4.3.0 with grep in /nix/store/aw897502z5bcn6dw6rp7jca90flfrjab-JAGS-4.3.0
20 lines
607 B
Nix
20 lines
607 B
Nix
{stdenv, fetchurl, gfortran, openblas}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "JAGS-4.3.0";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mcmc-jags/${name}.tar.gz";
|
|
sha256 = "1z3icccg2ic56vmhyrpinlsvpq7kcaflk1731rgpvz9bk1bxvica";
|
|
};
|
|
buildInputs = [gfortran openblas];
|
|
configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ];
|
|
|
|
meta = {
|
|
description = "Just Another Gibbs Sampler";
|
|
license = "GPL2";
|
|
homepage = http://www-ice.iarc.fr/~martyn/software/jags/;
|
|
maintainers = [stdenv.lib.maintainers.andres];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|