2021-01-15 10:19:50 +01:00
|
|
|
{lib, stdenv, fetchurl}:
|
2007-04-20 10:50:26 +02:00
|
|
|
|
2017-11-08 11:32:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "time";
|
2018-03-15 18:04:45 +01:00
|
|
|
version = "1.9";
|
2009-04-24 15:28:16 +02:00
|
|
|
|
2007-04-20 10:50:26 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://gnu/time/${pname}-${version}.tar.gz";
|
2018-03-15 18:04:45 +01:00
|
|
|
sha256 = "07jj7cz6lc13iqrpgn81ivqh8rkm73p4rnivwgrrshk23v4g1b7v";
|
2007-04-20 10:50:26 +02:00
|
|
|
};
|
2009-04-24 15:28:16 +02:00
|
|
|
|
2007-04-20 10:50:26 +02:00
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Tool that runs programs and summarizes the system resources they use";
|
2009-04-24 15:28:16 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnu.org/software/time/";
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2007-04-20 10:50:26 +02:00
|
|
|
};
|
|
|
|
}
|