summary refs log tree commit diff
path: root/pkgs/applications/science/math/jags/default.nix
blob: 1d1fb96a4739357bdd97e313ddf26ed8721ff6cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{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 = with stdenv.lib; {
    description = "Just Another Gibbs Sampler";
    license     = licenses.gpl2;
    homepage    = http://mcmc-jags.sourceforge.net;
    maintainers = [ maintainers.andres ];
    platforms = platforms.unix;
  };
}