* Added the GNU `time' command.

svn path=/nixpkgs/trunk/; revision=8599
wip/yesman
Eelco Dolstra 17 years ago
parent 6837f1e465
commit c182d49c51
  1. 12
      pkgs/tools/misc/time/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -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";
};
}

@ -517,6 +517,10 @@ rec {
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
};
time = import ../tools/misc/time {
inherit fetchurl stdenv;
};
trang = import ../tools/text/xml/trang {
inherit fetchurl stdenv unzip jre;
};

Loading…
Cancel
Save