nixpkgs/pkgs/tools/system/fio/default.nix
Tuomas Tynkkynen 0347174a0f fio: 3.1 -> 3.2
2017-11-18 23:18:52 +02:00

33 lines
723 B
Nix

{ stdenv, fetchFromGitHub, libaio, python, zlib }:
let
version = "3.2";
sha256 = "1sp83lxhrwg4627bma3pkcfg8yd1w3r6p02rdldv083962ljkinm";
in
stdenv.mkDerivation rec {
name = "fio-${version}";
src = fetchFromGitHub {
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
inherit sha256;
};
buildInputs = [ libaio python zlib ];
enableParallelBuilding = true;
postPatch = ''
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
'';
meta = with stdenv.lib; {
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
description = "Flexible IO Tester - an IO benchmark tool";
license = licenses.gpl2;
platforms = platforms.unix;
};
}