about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/math/jags/default.nix
blob: 0878070136943bfcb7a0176f1082d8696b2a0ab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchurl, gfortran, blas, lapack }:

stdenv.mkDerivation rec {
  pname = "JAGS";
  version = "4.3.2";

  src = fetchurl {
    url = "mirror://sourceforge/mcmc-jags/JAGS-${version}.tar.gz";
    sha256 = "sha256-hx9VavQDp8LOag8C8Vz4WlcnY+CT0mZY66xVxKtHL8g=";
  };

  nativeBuildInputs = [ gfortran ];

  buildInputs = [ blas lapack ];

  configureFlags = [ "--with-blas=-lblas" "--with-lapack=-llapack" ];

  meta = with lib; {
    description = "Just Another Gibbs Sampler";
    license = licenses.gpl2;
    homepage = "http://mcmc-jags.sourceforge.net";
    maintainers = [ maintainers.andres ];
    platforms = platforms.unix;
  };
}