forked from mirrors/nixpkgs
Differentiate between longDescription' and
description'.
svn path=/nixpkgs/trunk/; revision=11230
This commit is contained in:
parent
91dd7e2b86
commit
95f0e6a1a7
|
@ -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";
|
||||
};
|
||||
|
|
|
@ -19,10 +19,14 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = {
|
||||
description = ''Avahi is a system which facilitates service discovery
|
||||
on a local network. It is an implementation of the
|
||||
mDNS (for "Multicast DNS") and DNS-SD (for "DNS-Based
|
||||
Service Discovery") protocols.'';
|
||||
description = "Avahi, an mDNS/DNS-SD implementation";
|
||||
longDescription = ''
|
||||
Avahi is a system which facilitates service discovery on a local
|
||||
network. It is an implementation of the mDNS (for "Multicast
|
||||
DNS") and DNS-SD (for "DNS-Based Service Discovery")
|
||||
protocols.
|
||||
'';
|
||||
|
||||
homepage = http://avahi.org;
|
||||
license = "LGPLv2+";
|
||||
};
|
||||
|
|
|
@ -29,10 +29,13 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = {
|
||||
description = ''portmap is a part of the ONC RPC software collection
|
||||
implementing remote procedure calls (RPCs) between
|
||||
computer programs. It is widely used by NFS and NIS,
|
||||
among others.'';
|
||||
description = "ONC RPC portmapper";
|
||||
longDescription = ''
|
||||
Portmap is part of the ONC RPC software collection implementing
|
||||
remote procedure calls (RPCs) between computer programs. It is
|
||||
widely used by NFS and NIS, among others.
|
||||
'';
|
||||
|
||||
homepage = http://neil.brown.name/portmap/;
|
||||
license = "BSD";
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
|||
buildInputs = [gperf guile gmp zlib liboop gnum4 pam];
|
||||
|
||||
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/;
|
||||
license = "GPL";
|
||||
};
|
||||
|
|
|
@ -22,11 +22,15 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = {
|
||||
description = ''`nss-mdns' is a plugin for the GNU Name Service Switch
|
||||
(NSS) functionality of the GNU C Library (glibc) providing
|
||||
host name resolution via Multicast DNS (mDNS), effectively
|
||||
allowing name resolution by common Unix/Linux programs in
|
||||
the ad-hoc mDNS domain `.local'.'';
|
||||
description = "The mDNS Name Service Switch (NSS) plug-in";
|
||||
longDescription = ''
|
||||
`nss-mdns' is a plugin for the GNU Name Service Switch (NSS)
|
||||
functionality of the GNU C Library (glibc) providing host name
|
||||
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/;
|
||||
license = "LGPLv2+";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue