2022-11-09T12:09:45 fio 3.32 -> 3.33 https://repology.org/metapackage/fio/versions 2022-11-09T12:09:47 attrpath: fio 2022-11-09T12:09:47 Checking auto update branch... 2022-11-09T12:09:47 No auto update branch exists 2022-11-09T12:09:48 Old version 3.32" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, makeWrapper , libaio, python3, zlib , withGnuplot ? false, gnuplot ? null }: stdenv.mkDerivation rec { pname = "fio"; version = "3.33"; src = fetchFromGitHub { owner = "axboe"; repo = "fio"; rev = "fio-${version}"; sha256 = "sha256-d4Fx2QdO+frt+gcBzegJ9CW5NJQRLNkML/iD3te/1d0="; }; buildInputs = [ python3 zlib ] ++ lib.optional (!stdenv.isDarwin) libaio; nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ]; strictDeps = true; enableParallelBuilding = true; postPatch = '' substituteInPlace Makefile \ --replace "mandir = /usr/share/man" "mandir = \$(prefix)/man" \ --replace "sharedir = /usr/share/fio" "sharedir = \$(prefix)/share/fio" substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio ''; pythonPath = [ python3.pkgs.six ]; makeWrapperArgs = lib.optionals withGnuplot [ "--prefix PATH : ${lib.makeBinPath [ gnuplot ]}" ]; postInstall = '' wrapPythonProgramsIn "$out/bin" "$out $pythonPath" ''; meta = with lib; { description = "Flexible IO Tester - an IO benchmark tool"; homepage = "https://git.kernel.dk/cgit/fio/"; license = licenses.gpl2; platforms = platforms.unix; }; }