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