evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ti / time / package.nix
blob1df89b323838f0aeccccb4c20340559ae35fc657
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "time";
5   version = "1.9";
7   src = fetchurl {
8     url = "mirror://gnu/time/time-${finalAttrs.version}.tar.gz";
9     hash = "sha256-+6zwyB5iQp3z4zvaTO44dWYE8Y4B2XczjiMwaj47Uh4=";
10   };
12   meta = {
13     description = "Tool that runs programs and summarizes the system resources they use";
14     longDescription = ''
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.
26     '';
27     license = lib.licenses.gpl3Plus;
28     homepage = "https://www.gnu.org/software/time/";
29     platforms = lib.platforms.unix;
30     mainProgram = "time";
31   };