2015-09-25 19:16:43 +00:00
|
|
|
{ stdenv, fetchFromGitHub, libaio, python, zlib }:
|
2015-04-23 13:10:54 +00:00
|
|
|
|
2016-05-15 23:06:00 +00:00
|
|
|
let
|
2017-12-24 00:54:18 +00:00
|
|
|
version = "3.3";
|
|
|
|
sha256 = "0ipdpdn6rlsbppqjddyyk8c6rg1dl17d62dwwm0ijybi0m7imy1p";
|
2016-05-15 23:06:00 +00:00
|
|
|
in
|
2012-05-29 14:21:55 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-23 13:10:54 +00:00
|
|
|
name = "fio-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "axboe";
|
|
|
|
repo = "fio";
|
|
|
|
rev = "fio-${version}";
|
2016-05-15 23:06:00 +00:00
|
|
|
inherit sha256;
|
2012-05-29 14:21:55 +00:00
|
|
|
};
|
2015-04-23 13:10:54 +00:00
|
|
|
|
2015-09-25 19:16:43 +00:00
|
|
|
buildInputs = [ libaio python zlib ];
|
2015-04-23 13:10:54 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-09-25 19:16:43 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
|
2015-04-23 13:10:54 +00:00
|
|
|
'';
|
2012-05-29 14:21:55 +00:00
|
|
|
|
2015-09-25 19:16:43 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
2012-05-29 14:21:55 +00:00
|
|
|
description = "Flexible IO Tester - an IO benchmark tool";
|
2015-09-25 19:16:43 +00:00
|
|
|
license = licenses.gpl2;
|
2016-05-15 23:06:00 +00:00
|
|
|
platforms = platforms.unix;
|
2012-05-29 14:21:55 +00:00
|
|
|
};
|
|
|
|
}
|