* Cleaned up a lot of description fields that contained newlines.

Some of these should be longDescriptions, but most others just
  shouldn't contain newlines.  E.g. write

    description = "Bla";

  and not

    description = ''
      Bla
    '';

  This pollutes "nix-env -qa --description" output.

svn path=/nixpkgs/trunk/; revision=14310
This commit is contained in:
Eelco Dolstra
2009-03-03 13:27:40 +00:00
parent 9efba4b3b0
commit fcad0b0a5a
104 changed files with 348 additions and 452 deletions
+7 -5
View File
@@ -14,11 +14,13 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://bogofilter.sourceforge.net/;
description = ''Bogofilter is a mail filter that classifies mail
as spam or ham (non-spam) by a statistical analysis of
the message's header and content (body). The program is
able to learn from the user's classifications and
corrections. It is based on a Bayesian filter.'';
longDescription = ''
Bogofilter is a mail filter that classifies mail as spam or ham
(non-spam) by a statistical analysis of the message's header and
content (body). The program is able to learn from the user's
classifications and corrections. It is based on a Bayesian
filter.
'';
license = "GPLv2";
};
}
+1 -3
View File
@@ -44,9 +44,7 @@ stdenv.mkDerivation rec {
builder = writeScript (name + "-builder")
(textClosure localDefs [build doMakeInstall doForceShare doPropagate]);
meta = {
description = "
Relational FS over FUSE.
";
description = "A relational filesystem on top of FUSE";
inherit src;
};
}
+1 -3
View File
@@ -45,9 +45,7 @@ stdenv.mkDerivation rec {
builder = writeScript (name + "-builder")
(textClosure localDefs [build doMakeInstall doForceShare doPropagate]);
meta = {
description = "
Relational FS over FUSE.
";
description = "A relational filesystem on top of FUSE";
inherit src;
};
}
+1 -3
View File
@@ -16,9 +16,7 @@ stdenv.mkDerivation rec {
(textClosure localDefs
[doConfigure doMakeInstall doForceShare doPropagate]);
meta = {
description = "
Readline wrapper for console programs.
";
description = "Readline wrapper for console programs";
inherit src;
};
}
+3 -3
View File
@@ -13,10 +13,10 @@ stdenv.mkDerivation {
meta = {
homepage = http://www.cgsecurity.org/wiki/TestDisk;
license = "GPL";
description = "
longDescription = ''
TestDisk is a program for data recovery, primarily designed to
help recover lost partitions and/or make non-booting disks
bootable again
";
bootable again.
'';
};
}
+12 -15
View File
@@ -1,4 +1,5 @@
args: with args;
stdenv.mkDerivation {
name = "timidity-2.13.0";
@@ -7,25 +8,21 @@ stdenv.mkDerivation {
sha256 = "1jbmk0m375fh5nj2awqzns7pdjbi7dxpjdwcix04zipfcilppbmf";
};
instruments =
fetchurl {
url = http://www.csee.umbc.edu/pub/midia/instruments.tar.gz;
sha256 = "0lsh9l8l5h46z0y8ybsjd4pf6c22n33jsjvapfv3rjlfnasnqw67";
};
instruments = fetchurl {
url = http://www.csee.umbc.edu/pub/midia/instruments.tar.gz;
sha256 = "0lsh9l8l5h46z0y8ybsjd4pf6c22n33jsjvapfv3rjlfnasnqw67";
};
buildInputs =[alsaLib];
buildInputs = [alsaLib];
config=./timidity.cfg;
postInstall = "mkdir -p \$out/share/timidity/;
cp \$config \$out/share/timidity/timidity.cfg;
tar -xf \$instruments -C \$out/share/timidity/;
";
postInstall = ''
mkdir -p $out/share/timidity/;
cp ${./timidity.cfg} $out/share/timidity/timidity.cfg
tar -xf $instruments -C $out/share/timidity/
'';
meta = {
description = "
TiMidity - software MIDI renderer.
";
description = "A software MIDI renderer";
};
}
+6 -8
View File
@@ -1,18 +1,16 @@
args: with args;
stdenv.mkDerivation {
name = "wv-1.2.4";
src = fetchurl {
url = mirror://sourceforge/wvware/wv-1.2.4.tar.gz;
sha256 = "1mn2ax6qjy3pvixlnvbkn6ymy6y4l2wxrr4brjaczm121s8hjcb7";
};
url = mirror://sourceforge/wvware/wv-1.2.4.tar.gz;
sha256 = "1mn2ax6qjy3pvixlnvbkn6ymy6y4l2wxrr4brjaczm121s8hjcb7";
};
buildInputs = [zlib imagemagick libpng glib
pkgconfig libgsf libxml2 bzip2];
buildInputs = [zlib imagemagick libpng glib pkgconfig libgsf libxml2 bzip2];
meta = {
description = "
Convertor from Microsoft Word formats to human-editable ones.
";
description = "Converter from Microsoft Word formats to human-editable ones";
};
}