2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
2021-03-25 12:47:58 +01:00
|
|
|
, libaio, python3, zlib
|
2018-08-08 13:10:20 +02:00
|
|
|
, withGnuplot ? false, gnuplot ? null }:
|
2012-05-29 16:21:55 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fio";
|
2022-04-10 19:51:47 +02:00
|
|
|
version = "3.30";
|
2015-04-23 15:10:54 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-08 13:10:20 +02:00
|
|
|
owner = "axboe";
|
|
|
|
repo = "fio";
|
|
|
|
rev = "fio-${version}";
|
2022-04-10 19:51:47 +02:00
|
|
|
sha256 = "sha256-X2B8xlCLSHDgTaH55TUJq4WcaObZy/fvfkQ0j3J9Kzo=";
|
2012-05-29 16:21:55 +02:00
|
|
|
};
|
2015-04-23 15:10:54 +02:00
|
|
|
|
2021-03-25 12:47:58 +01:00
|
|
|
buildInputs = [ python3 zlib ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optional (!stdenv.isDarwin) libaio;
|
2015-04-23 15:10:54 +02:00
|
|
|
|
2022-01-08 00:42:21 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ];
|
2018-08-08 13:10:20 +02:00
|
|
|
|
2021-03-25 12:47:58 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
2015-04-23 15:10:54 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-09-25 21:16:43 +02:00
|
|
|
postPatch = ''
|
2018-04-25 09:16:13 +02:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "mandir = /usr/share/man" "mandir = \$(prefix)/man" \
|
|
|
|
--replace "sharedir = /usr/share/fio" "sharedir = \$(prefix)/share/fio"
|
2015-09-25 21:16:43 +02:00
|
|
|
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
|
2015-04-23 15:10:54 +02:00
|
|
|
'';
|
2012-05-29 16:21:55 +02:00
|
|
|
|
2022-01-08 00:42:21 +01:00
|
|
|
pythonPath = [ python3.pkgs.six ];
|
|
|
|
|
|
|
|
makeWrapperArgs = lib.optional withGnuplot [
|
|
|
|
"--prefix PATH : ${lib.makeBinPath [ gnuplot ]}"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
|
2018-08-08 13:10:20 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2012-05-29 16:21:55 +02:00
|
|
|
description = "Flexible IO Tester - an IO benchmark tool";
|
2019-11-16 01:41:23 +01:00
|
|
|
homepage = "https://git.kernel.dk/cgit/fio/";
|
2015-09-25 21:16:43 +02:00
|
|
|
license = licenses.gpl2;
|
2016-05-16 01:06:00 +02:00
|
|
|
platforms = platforms.unix;
|
2012-05-29 16:21:55 +02:00
|
|
|
};
|
|
|
|
}
|