python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / sysstat / default.nix
blob2a5112e9fdd050a5b841c9fd8a3c36fc567cb72d
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , gettext
5 , bzip2
6 }:
8 stdenv.mkDerivation rec {
9   pname = "sysstat";
10   version = "12.7.4";
12   src = fetchFromGitHub {
13     owner = pname;
14     repo = pname;
15     rev = "refs/tags/v${version}";
16     hash = "sha256-ELmSzWnJ8vGwGPwY/5MFp/2gQhMXMjNG4bHtCplfQSc=";
17   };
19   buildInputs = [ gettext ];
21   preConfigure = ''
22     export PATH_CP=$(type -tp cp)
23     export PATH_CHKCONFIG=/no-such-program
24     export BZIP=${bzip2.bin}/bin/bzip2
25     export SYSTEMCTL=systemctl
26     export COMPRESS_MANPG=n
27   '';
29   makeFlags = [ "SYSCONFIG_DIR=$(out)/etc" "IGNORE_FILE_ATTRIBUTES=y" "CHOWN=true" ];
30   installTargets = [ "install_base" "install_nls" "install_man" ];
32   patches = [ ./install.patch ];
34   meta = {
35     homepage = "http://sebastien.godard.pagesperso-orange.fr/";
36     description = "Collection of performance monitoring tools for Linux (such as sar, iostat and pidstat)";
37     license = lib.licenses.gpl2Plus;
38     platforms = lib.platforms.linux;
39     maintainers = [ ];
40   };