2021-01-15 15:45:37 +01:00
|
|
|
{ lib, stdenv, fetchurl, gettext, bzip2 }:
|
2015-09-28 15:46:24 +02:00
|
|
|
|
2010-12-01 13:28:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-27 16:47:49 +02:00
|
|
|
pname = "sysstat";
|
2022-03-07 17:29:09 +01:00
|
|
|
version = "12.4.5";
|
2014-09-23 11:51:34 +02:00
|
|
|
|
2007-02-25 10:46:29 +01:00
|
|
|
src = fetchurl {
|
2021-08-27 16:47:49 +02:00
|
|
|
url = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${version}.tar.xz";
|
2022-03-07 17:29:09 +01:00
|
|
|
sha256 = "sha256-70RazqMBu7mW5BCEL2KQqNBJ6ITUhoz+9+hdwEt+7ls=";
|
2007-02-25 10:46:29 +01:00
|
|
|
};
|
|
|
|
|
2010-12-01 13:28:37 +01:00
|
|
|
buildInputs = [ gettext ];
|
2007-02-25 10:46:29 +01:00
|
|
|
|
2008-08-07 13:15:11 +02:00
|
|
|
preConfigure = ''
|
2007-02-25 10:46:29 +01:00
|
|
|
export PATH_CP=$(type -tp cp)
|
|
|
|
export PATH_CHKCONFIG=/no-such-program
|
2016-02-01 19:45:57 +01:00
|
|
|
export BZIP=${bzip2.bin}/bin/bzip2
|
2014-09-23 11:51:34 +02:00
|
|
|
export SYSTEMCTL=systemctl
|
2022-05-26 15:35:21 +02:00
|
|
|
export COMPRESS_MANPG=n
|
2014-09-23 11:51:34 +02:00
|
|
|
'';
|
2012-08-14 14:14:55 +02:00
|
|
|
|
2019-10-27 14:03:25 +01:00
|
|
|
makeFlags = [ "SYSCONFIG_DIR=$(out)/etc" "IGNORE_FILE_ATTRIBUTES=y" "CHOWN=true" ];
|
|
|
|
installTargets = [ "install_base" "install_nls" "install_man" ];
|
2014-12-18 14:47:00 +01:00
|
|
|
|
|
|
|
patches = [ ./install.patch ];
|
|
|
|
|
2010-12-01 13:28:37 +01:00
|
|
|
meta = {
|
2020-02-25 01:31:30 +01:00
|
|
|
homepage = "http://sebastien.godard.pagesperso-orange.fr/";
|
2010-12-01 13:28:37 +01:00
|
|
|
description = "A collection of performance monitoring tools for Linux (such as sar, iostat and pidstat)";
|
2021-01-15 15:45:37 +01:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2010-12-01 13:28:37 +01:00
|
|
|
};
|
2007-02-25 10:46:29 +01:00
|
|
|
}
|