nixpkgs/pkgs/tools/system/fio/default.nix
Tuomas Tynkkynen c1ed49220a fio: 3.2 -> 3.3
2017-12-26 20:02:00 +02:00

33 lines
723 B
Nix

{ stdenv, fetchFromGitHub, libaio, python, zlib }:
let
version = "3.3";
sha256 = "0ipdpdn6rlsbppqjddyyk8c6rg1dl17d62dwwm0ijybi0m7imy1p";
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;
};
}