mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
* Added the GNU `time' command.
svn path=/nixpkgs/trunk/; revision=8599
This commit is contained in:
parent
6837f1e465
commit
c182d49c51
12
pkgs/tools/misc/time/default.nix
Normal file
12
pkgs/tools/misc/time/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user