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

View File

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
builder = ./builder.sh;
buildInputs = [readline];
meta = {
meta = with stdenv.lib; {
description = "Bayesian Inference of Phylogeny";
longDescription = ''
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
MCMC) to approximate the posterior probabilities of trees.
'';
license = "GPL2";
license = licenses.gpl2;
homepage = "http://mrbayes.csit.fsu.edu/";
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
};
}