2015-09-25 21:16:43 +02:00
|
|
|
{ stdenv, fetchFromGitHub, libaio, python, zlib }:
|
2015-04-23 15:10:54 +02:00
|
|
|
|
2016-05-16 01:06:00 +02:00
|
|
|
let
|
2018-02-24 01:59:14 +01:00
|
|
|
version = "3.5";
|
|
|
|
sha256 = "1h6qwvn0h3xz98420a19v8isfjkfnac9vvx8hsw8q4ycb35r8n3h";
|
2016-05-16 01:06:00 +02:00
|
|
|
in
|
2012-05-29 16:21:55 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-23 15:10:54 +02:00
|
|
|
name = "fio-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "axboe";
|
|
|
|
repo = "fio";
|
|
|
|
rev = "fio-${version}";
|
2016-05-16 01:06:00 +02:00
|
|
|
inherit sha256;
|
2012-05-29 16:21:55 +02:00
|
|
|
};
|
2015-04-23 15:10:54 +02:00
|
|
|
|
2015-09-25 21:16:43 +02:00
|
|
|
buildInputs = [ libaio python zlib ];
|
2015-04-23 15:10:54 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-09-25 21:16:43 +02:00
|
|
|
postPatch = ''
|
|
|
|
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
|
|
|
|
2015-09-25 21:16:43 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
2012-05-29 16:21:55 +02:00
|
|
|
description = "Flexible IO Tester - an IO benchmark tool";
|
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
|
|
|
};
|
|
|
|
}
|