Files
nixpkgs/pkgs/os-specific/linux/sysstat/default.nix
T

33 lines
961 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gettext, bzip2 }:
2015-09-28 15:46:24 +02:00
stdenv.mkDerivation rec {
2016-06-30 20:22:39 +08:00
name = "sysstat-11.2.5";
2007-02-25 09:46:29 +00:00
src = fetchurl {
url = "http://perso.orange.fr/sebastien.godard/${name}.tar.xz";
2016-06-30 20:22:39 +08:00
sha256 = "1r7869pnylamjry5f5l5m1jn68v61js9wdkz8yn37a9a2bcrqp2d";
2007-02-25 09:46:29 +00:00
};
buildInputs = [ gettext ];
2007-02-25 09:46:29 +00:00
2008-08-07 11:15:11 +00:00
preConfigure = ''
2007-02-25 09:46:29 +00:00
export PATH_CP=$(type -tp cp)
export PATH_CHKCONFIG=/no-such-program
export BZIP=${bzip2.bin}/bin/bzip2
export SYSTEMCTL=systemctl
'';
2016-06-30 20:22:39 +08:00
makeFlags = "SYSCONFIG_DIR=$(out)/etc IGNORE_FILE_ATTRIBUTES=y CHOWN=true";
2014-12-18 14:47:00 +01:00
installTargets = "install_base install_nls install_man";
patches = [ ./install.patch ];
meta = {
homepage = http://sebastien.godard.pagesperso-orange.fr/;
description = "A collection of performance monitoring tools for Linux (such as sar, iostat and pidstat)";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
2007-02-25 09:46:29 +00:00
}