1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation (finalAttrs: {
8 url = "mirror://gnu/time/time-${finalAttrs.version}.tar.gz";
9 hash = "sha256-+6zwyB5iQp3z4zvaTO44dWYE8Y4B2XczjiMwaj47Uh4=";
13 description = "Tool that runs programs and summarizes the system resources they use";
15 The `time' command runs another program, then displays
16 information about the resources used by that program, collected
17 by the system while the program was running. You can select
18 which information is reported and the format in which it is
19 shown, or have `time' save the information in a file instead of
20 displaying it on the screen.
22 The resources that `time' can report on fall into the general
23 categories of time, memory, and I/O and IPC calls. Some systems
24 do not provide much information about program resource use;
25 `time' reports unavailable information as zero values.
27 license = lib.licenses.gpl3Plus;
28 homepage = "https://www.gnu.org/software/time/";
29 platforms = lib.platforms.unix;