summary refs log tree commit diff
path: root/pkgs/servers/portmap
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-03-20 14:35:03 +0000
committerLudovic Courtès <ludo@gnu.org>2008-03-20 14:35:03 +0000
commit95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca (patch)
treeb3d019d630131ccf985c7438775b9df1d9d6dfa4 /pkgs/servers/portmap
parent91dd7e2b86afdd10782024eaa511a73de26417b1 (diff)
downloadnixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.tar
nixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.tar.gz
nixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.tar.bz2
nixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.tar.lz
nixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.tar.xz
nixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.tar.zst
nixpkgs-95f0e6a1a75dabb2131aae1db0a4ee30c802b2ca.zip
Differentiate between `longDescription' and `description'.
svn path=/nixpkgs/trunk/; revision=11230
Diffstat (limited to 'pkgs/servers/portmap')
-rw-r--r--pkgs/servers/portmap/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/servers/portmap/default.nix b/pkgs/servers/portmap/default.nix
index 3664bdba661..5687475d8fd 100644
--- a/pkgs/servers/portmap/default.nix
+++ b/pkgs/servers/portmap/default.nix
@@ -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";
   };