3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/fio/default.nix

33 lines
723 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libaio, python, zlib }:
2015-04-23 14:10:54 +01:00
let
2017-07-21 09:43:48 +01:00
version = "2.99";
sha256 = "0fj8fk2w06ahcn35z8pj88sx12yrx1yfd38j6k5aigj4dfj3f3zy";
in
stdenv.mkDerivation rec {
2015-04-23 14:10:54 +01:00
name = "fio-${version}";
src = fetchFromGitHub {
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
inherit sha256;
};
2015-04-23 14:10:54 +01:00
buildInputs = [ libaio python zlib ];
2015-04-23 14:10:54 +01:00
enableParallelBuilding = true;
postPatch = ''
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
2015-04-23 14:10:54 +01:00
'';
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;
};
}