Differentiate between longDescription' and description'.

svn path=/nixpkgs/trunk/; revision=11230
This commit is contained in:
Ludovic Courtès
2008-03-20 14:35:03 +00:00
parent 91dd7e2b86
commit 95f0e6a1a7
5 changed files with 32 additions and 17 deletions

View File

@@ -24,9 +24,13 @@ stdenv.mkDerivation rec {
setupHook = ./setup-hook.sh;
meta = {
description = ''GNU Guile is an interpreter for the Scheme
programming language, packaged as a library that
can be embedded into programs to make them extensible.'';
description = "GNU Guile, an embeddable Scheme interpreter";
longDescription = ''
GNU Guile is an interpreter for the Scheme programming language,
packaged as a library that can be embedded into programs to make
them extensible. It supports many SRFIs.
'';
homepage = http://www.gnu.org/software/guile/;
license = "LGPL";
};