nixpkgs/pkgs/tools/system/fio/default.nix
Tobias Geerinckx-Rice cad2ac106a fio: 2.2.7 -> 2.2.10
2015-09-14 00:52:27 +02:00

35 lines
737 B
Nix

{ stdenv, fetchFromGitHub, libaio, zlib }:
let version = "2.2.10"; in
stdenv.mkDerivation rec {
name = "fio-${version}";
src = fetchFromGitHub {
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
sha256 = "0hg72k8cifw6lc46kyiic7ai4gqn2819d6g998vmx01jnlcixp8q";
};
buildInputs = [ libaio zlib ];
enableParallelBuilding = true;
configurePhase = ''
substituteInPlace tools/plot/fio2gnuplot \
--replace /usr/share/fio $out/share/fio
./configure
'';
installPhase = ''
make install prefix=$out
'';
meta = {
homepage = "http://git.kernel.dk/?p=fio.git;a=summary";
description = "Flexible IO Tester - an IO benchmark tool";
license = stdenv.lib.licenses.gpl2;
};
}