Merge pull request #10065 from dezgeg/pr-fio

fio: Minor refactor
This commit is contained in:
lethalman 2015-09-25 22:16:49 +02:00
commit d56f2d009f

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, libaio, zlib }:
{ stdenv, fetchFromGitHub, libaio, python, zlib }:
let version = "2.2.10"; in
@ -12,23 +12,18 @@ stdenv.mkDerivation rec {
sha256 = "0hg72k8cifw6lc46kyiic7ai4gqn2819d6g998vmx01jnlcixp8q";
};
buildInputs = [ libaio zlib ];
buildInputs = [ libaio python zlib ];
enableParallelBuilding = true;
configurePhase = ''
substituteInPlace tools/plot/fio2gnuplot \
--replace /usr/share/fio $out/share/fio
./configure
postPatch = ''
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
'';
installPhase = ''
make install prefix=$out
'';
meta = {
meta = with stdenv.lib; {
homepage = "http://git.kernel.dk/?p=fio.git;a=summary";
description = "Flexible IO Tester - an IO benchmark tool";
license = stdenv.lib.licenses.gpl2;
license = licenses.gpl2;
platforms = platforms.linux;
};
}