summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-25 22:45:32 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-25 22:45:32 +0000
commit5a2284ac61be1c2e838bf8263be6aa91417edff2 (patch)
tree88d1bca617789ac0ff96c0b48b2858c06d842a06 /pkgs/tools/misc
parentd1a57e454ead43987aefa8ff39dae5d5f5d038e8 (diff)
parentf7454eae9cc9255883dd5afb6beb945fb49737f2 (diff)
downloadnixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.tar
nixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.tar.gz
nixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.tar.bz2
nixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.tar.lz
nixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.tar.xz
nixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.tar.zst
nixlib-5a2284ac61be1c2e838bf8263be6aa91417edff2.zip
* Sync with the trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=15313
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/time/default.nix21
1 files changed, 20 insertions, 1 deletions
diff --git a/pkgs/tools/misc/time/default.nix b/pkgs/tools/misc/time/default.nix
index 281e0a08bfbe..658afb37c035 100644
--- a/pkgs/tools/misc/time/default.nix
+++ b/pkgs/tools/misc/time/default.nix
@@ -2,11 +2,30 @@
 
 stdenv.mkDerivation {
   name = "time-1.7";
+
   src = fetchurl {
     url = mirror://gnu/time/time-1.7.tar.gz;
     sha256 = "0va9063fcn7xykv658v2s9gilj2fq4rcdxx2mn2mmy1v4ndafzp3";
   };
+
   meta = {
-    description = "Command for running programs and summarizing the system resources they use";
+    description = "GNU Time, a tool that runs programs and summarizes the system resources they use";
+
+    longDescription = ''
+      The `time' command runs another program, then displays
+      information about the resources used by that program, collected
+      by the system while the program was running.  You can select
+      which information is reported and the format in which it is
+      shown, or have `time' save the information in a file instead of
+      displaying it on the screen.
+
+      The resources that `time' can report on fall into the general
+      categories of time, memory, and I/O and IPC calls.  Some systems
+      do not provide much information about program resource use;
+      `time' reports unavailable information as zero values.
+    '';
+
+    license = "GPLv2+";
+    homepage = http://www.gnu.org/software/time/;
   };
 }