488ee63a13
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sysstat/versions. These checks were done: - built on NixOS - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/sar passed the binary check. - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/sadf passed the binary check. - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/iostat passed the binary check. - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/tapestat passed the binary check. - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/mpstat passed the binary check. - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/pidstat passed the binary check. - /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4/bin/cifsiostat passed the binary check. - 7 of 7 passed binary check by having a zero exit code. - 0 of 7 passed binary check by having the new version present in output. - found 11.7.4 with grep in /nix/store/gz1jvhynz6ixwh9z33kw5fi603nq090q-sysstat-11.7.4 - directory tree listing: https://gist.github.com/099df05f7cbb5510144a7b1741ff0fda - du listing: https://gist.github.com/21956b2e9d623a7923391b59af578f7e
33 lines
961 B
Nix
33 lines
961 B
Nix
{ stdenv, fetchurl, gettext, bzip2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sysstat-11.7.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://perso.orange.fr/sebastien.godard/${name}.tar.xz";
|
|
sha256 = "144h5fb93s33w3pmgw7qadw1f7c4jq41m5lzcs49ihl44yi6aqm9";
|
|
};
|
|
|
|
buildInputs = [ gettext ];
|
|
|
|
preConfigure = ''
|
|
export PATH_CP=$(type -tp cp)
|
|
export PATH_CHKCONFIG=/no-such-program
|
|
export BZIP=${bzip2.bin}/bin/bzip2
|
|
export SYSTEMCTL=systemctl
|
|
'';
|
|
|
|
makeFlags = "SYSCONFIG_DIR=$(out)/etc IGNORE_FILE_ATTRIBUTES=y CHOWN=true";
|
|
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 ];
|
|
};
|
|
}
|