3
0
Fork 0
forked from mirrors/nixpkgs

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; setupHook = ./setup-hook.sh;
meta = { meta = {
description = ''GNU Guile is an interpreter for the Scheme description = "GNU Guile, an embeddable Scheme interpreter";
programming language, packaged as a library that longDescription = ''
can be embedded into programs to make them extensible.''; 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/; homepage = http://www.gnu.org/software/guile/;
license = "LGPL"; license = "LGPL";
}; };

View file

@ -19,10 +19,14 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
description = ''Avahi is a system which facilitates service discovery description = "Avahi, an mDNS/DNS-SD implementation";
on a local network. It is an implementation of the longDescription = ''
mDNS (for "Multicast DNS") and DNS-SD (for "DNS-Based Avahi is a system which facilitates service discovery on a local
Service Discovery") protocols.''; network. It is an implementation of the mDNS (for "Multicast
DNS") and DNS-SD (for "DNS-Based Service Discovery")
protocols.
'';
homepage = http://avahi.org; homepage = http://avahi.org;
license = "LGPLv2+"; license = "LGPLv2+";
}; };

View file

@ -29,10 +29,13 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
description = ''portmap is a part of the ONC RPC software collection description = "ONC RPC portmapper";
implementing remote procedure calls (RPCs) between longDescription = ''
computer programs. It is widely used by NFS and NIS, Portmap is part of the ONC RPC software collection implementing
among others.''; remote procedure calls (RPCs) between computer programs. It is
widely used by NFS and NIS, among others.
'';
homepage = http://neil.brown.name/portmap/; homepage = http://neil.brown.name/portmap/;
license = "BSD"; license = "BSD";
}; };

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation {
buildInputs = [gperf guile gmp zlib liboop gnum4 pam]; buildInputs = [gperf guile gmp zlib liboop gnum4 pam];
meta = { meta = {
description = "GNU lsh, a GPL'd implementation of the SSH protocol."; description = "GNU lsh, a GPL'd implementation of the SSH protocol";
homepage = http://www.lysator.liu.se/~nisse/lsh/; homepage = http://www.lysator.liu.se/~nisse/lsh/;
license = "GPL"; license = "GPL";
}; };

View file

@ -22,11 +22,15 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
description = ''`nss-mdns' is a plugin for the GNU Name Service Switch description = "The mDNS Name Service Switch (NSS) plug-in";
(NSS) functionality of the GNU C Library (glibc) providing longDescription = ''
host name resolution via Multicast DNS (mDNS), effectively `nss-mdns' is a plugin for the GNU Name Service Switch (NSS)
allowing name resolution by common Unix/Linux programs in functionality of the GNU C Library (glibc) providing host name
the ad-hoc mDNS domain `.local'.''; resolution via Multicast DNS (mDNS), effectively allowing name
resolution by common Unix/Linux programs in the ad-hoc mDNS
domain `.local'.
'';
homepage = http://0pointer.de/lennart/projects/nss-mdns/; homepage = http://0pointer.de/lennart/projects/nss-mdns/;
license = "LGPLv2+"; license = "LGPLv2+";
}; };