* Added sysstat.

svn path=/nixpkgs/trunk/; revision=8038
This commit is contained in:
Eelco Dolstra 2007-02-25 09:46:29 +00:00
parent 8cfe4d8275
commit 399b9f4cb6
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{stdenv, fetchurl, gettext}:
stdenv.mkDerivation {
name = "sysstat-7.1.1";
src = fetchurl {
url = file:///home/eelco/stuff/sysstat-7.1.1.tar.gz;
sha256 = "1dmna652qj39z2cddasm5rj1wjngglima73pmfjqrzz254g0vx9w";
};
buildInputs = [gettext];
preConfigure = "
export PATH_CP=$(type -tp cp)
export PATH_CHKCONFIG=/no-such-program
makeFlagsArray=(SA_DIR=$out/var/log/sa SYSCONFIG_DIR=$out/etc CHOWN=true IGNORE_MAN_GROUP=y)
";
}

View file

@ -2380,6 +2380,10 @@ rec {
inherit fetchurl stdenv nasm perl;
};
sysstat = import ../os-specific/linux/sysstat {
inherit fetchurl stdenv gettext;
};
sysvinit = import ../os-specific/linux/sysvinit {
inherit fetchurl stdenv;
};