mrbayes: fix license

This commit is contained in:
Markus Kowalewski 2020-06-26 11:06:35 +02:00
parent 83dda57082
commit c317091b5a
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
builder = ./builder.sh; builder = ./builder.sh;
buildInputs = [readline]; buildInputs = [readline];
meta = { meta = with stdenv.lib; {
description = "Bayesian Inference of Phylogeny"; description = "Bayesian Inference of Phylogeny";
longDescription = '' longDescription = ''
Bayesian inference of phylogeny is based upon a Bayesian inference of phylogeny is based upon a
@ -22,8 +22,8 @@ stdenv.mkDerivation rec {
MrBayes uses a simulation technique called Markov chain Monte Carlo (or MrBayes uses a simulation technique called Markov chain Monte Carlo (or
MCMC) to approximate the posterior probabilities of trees. MCMC) to approximate the posterior probabilities of trees.
''; '';
license = "GPL2"; license = licenses.gpl2;
homepage = "http://mrbayes.csit.fsu.edu/"; homepage = "http://mrbayes.csit.fsu.edu/";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }