jags: update homepage + fix license

This commit is contained in:
Markus Kowalewski 2018-09-02 00:40:02 +02:00
parent e5974ddaec
commit c184150a22
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -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;
}; };
} }