2018-08-08 12:10:20 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
|
|
|
, libaio, python, zlib
|
|
|
|
, withGnuplot ? false, gnuplot ? null }:
|
2012-05-29 15:21:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-23 14:10:54 +01:00
|
|
|
name = "fio-${version}";
|
2018-09-28 21:23:27 +01:00
|
|
|
version = "3.10";
|
2015-04-23 14:10:54 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-08 12:10:20 +01:00
|
|
|
owner = "axboe";
|
|
|
|
repo = "fio";
|
|
|
|
rev = "fio-${version}";
|
2018-09-28 21:23:27 +01:00
|
|
|
sha256 = "0cg6knaja32g46j1vlf0qw4q8yng7hrnnvh6b768pbjdxpn3wvi0";
|
2012-05-29 15:21:55 +01:00
|
|
|
};
|
2015-04-23 14:10:54 +01:00
|
|
|
|
2018-04-25 08:16:13 +01:00
|
|
|
buildInputs = [ python zlib ]
|
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) libaio;
|
2015-04-23 14:10:54 +01:00
|
|
|
|
2018-08-08 12:10:20 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2015-04-23 14:10:54 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-09-25 20:16:43 +01:00
|
|
|
postPatch = ''
|
2018-04-25 08:16:13 +01:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "mandir = /usr/share/man" "mandir = \$(prefix)/man" \
|
|
|
|
--replace "sharedir = /usr/share/fio" "sharedir = \$(prefix)/share/fio"
|
2015-09-25 20:16:43 +01:00
|
|
|
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
|
2015-04-23 14:10:54 +01:00
|
|
|
'';
|
2012-05-29 15:21:55 +01:00
|
|
|
|
2018-08-08 12:10:20 +01:00
|
|
|
postInstall = stdenv.lib.optionalString withGnuplot ''
|
|
|
|
wrapProgram $out/bin/fio2gnuplot \
|
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ gnuplot ]}
|
|
|
|
'';
|
|
|
|
|
2015-09-25 20:16:43 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-05-29 15:21:55 +01:00
|
|
|
description = "Flexible IO Tester - an IO benchmark tool";
|
2018-08-08 12:10:20 +01:00
|
|
|
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
2015-09-25 20:16:43 +01:00
|
|
|
license = licenses.gpl2;
|
2016-05-16 00:06:00 +01:00
|
|
|
platforms = platforms.unix;
|
2012-05-29 15:21:55 +01:00
|
|
|
};
|
|
|
|
}
|