jags: update homepage + fix license

This commit is contained in:
Markus Kowalewski
2018-09-02 01:46:18 +02:00
parent e5974ddaec
commit c184150a22
@@ -9,11 +9,11 @@ stdenv.mkDerivation rec {
buildInputs = [gfortran openblas]; buildInputs = [gfortran openblas];
configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ]; configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ];
meta = { meta = with stdenv.lib; {
description = "Just Another Gibbs Sampler"; description = "Just Another Gibbs Sampler";
license = "GPL2"; license = licenses.gpl2;
homepage = http://www-ice.iarc.fr/~martyn/software/jags/; homepage = http://mcmc-jags.sourceforge.net;
maintainers = [stdenv.lib.maintainers.andres]; maintainers = [ maintainers.andres ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
}; };
} }