* Added the GNU `time' command.

svn path=/nixpkgs/trunk/; revision=8599
This commit is contained in:
Eelco Dolstra
2007-04-20 08:50:26 +00:00
parent 6837f1e465
commit c182d49c51
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "time-1.7";
src = fetchurl {
url = ftp://ftp.gnu.org/pub/gnu/time/time-1.7.tar.gz;
sha256 = "0va9063fcn7xykv658v2s9gilj2fq4rcdxx2mn2mmy1v4ndafzp3";
};
meta = {
description = "Command for running programs and summarizing the system resources they use";
};
}