treewide: Wrap some really long package descriptions

This commit is contained in:
Tuomas Tynkkynen 2016-08-02 19:38:04 +03:00
parent 63de40099f
commit 102ffa6be7
3 changed files with 20 additions and 3 deletions

View File

@ -13,7 +13,15 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Bayesian Inference of Phylogeny"; description = "Bayesian Inference of Phylogeny";
longDescription = ''Bayesian inference of phylogeny is based upon a quantity called the posterior probability distribution of trees, which is the probability of a tree conditioned on the observations. The conditioning is accomplished using Bayes's theorem. The posterior probability distribution of trees is impossible to calculate analytically; instead, MrBayes uses a simulation technique called Markov chain Monte Carlo (or MCMC) to approximate the posterior probabilities of trees.''; longDescription = ''
Bayesian inference of phylogeny is based upon a
quantity called the posterior probability distribution of trees, which is
the probability of a tree conditioned on the observations. The conditioning
is accomplished using Bayes's theorem. The posterior probability
distribution of trees is impossible to calculate analytically; instead,
MrBayes uses a simulation technique called Markov chain Monte Carlo (or
MCMC) to approximate the posterior probabilities of trees.
'';
license = "GPL2"; license = "GPL2";
homepage = http://mrbayes.csit.fsu.edu/; homepage = http://mrbayes.csit.fsu.edu/;
}; };

View File

@ -18,7 +18,11 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Freundlich's C++ toolkit"; description = "Freundlich's C++ toolkit";
longDescription = '' longDescription = ''
Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on improving general C++ code by providing better types, a strong focus on C++11 (non-conforming compilers are mostly not supported) and functional programming (which is both efficient and syntactically affordable in C++11). Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on
improving general C++ code by providing better types, a strong focus on
C++11 (non-conforming compilers are mostly not supported) and functional
programming (which is both efficient and syntactically affordable in
C++11).
''; '';
homepage = http://fcppt.org; homepage = http://fcppt.org;
license = stdenv.lib.licenses.boost; license = stdenv.lib.licenses.boost;

View File

@ -22,7 +22,12 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "A portable, freeware Super Nintendo Entertainment System (SNES) emulator"; description = "A portable, freeware Super Nintendo Entertainment System (SNES) emulator";
longDescription = "Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES) emulator. It basically allows you to play most games designed for the SNES and Super Famicom Nintendo game systems on your PC or Workstation; which includes some real gems that were only ever released in Japan."; longDescription = ''
Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES)
emulator. It basically allows you to play most games designed for the SNES
and Super Famicom Nintendo game systems on your PC or Workstation; which
includes some real gems that were only ever released in Japan.
'';
license = stdenv.lib.licenses.lgpl2; license = stdenv.lib.licenses.lgpl2;
maintainers = [ stdenv.lib.maintainers.qknight ]; maintainers = [ stdenv.lib.maintainers.qknight ];
homepage = http://www.snes9x.com/; homepage = http://www.snes9x.com/;