2549373cb9
- Use postPatch for patching, so don't need to manually override configurePhase and installPhase. - Add python to buildInputs, so fio2gnuplot gets patchShebangs'd. - Add platforms, so it gets built by Hydra.
30 lines
706 B
Nix
30 lines
706 B
Nix
{ stdenv, fetchFromGitHub, libaio, python, 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 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.linux;
|
|
};
|
|
}
|