nixpkgs/pkgs/tools/system/fio/default.nix

33 lines
723 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libaio, python, zlib }:
2015-04-23 15:10:54 +02:00
let
2016-06-25 11:06:16 +02:00
version = "2.12";
sha256 = "1m0fx0x1v2375vyxhd2i12b9w1qy4yh75f6qhwlcr78himcsmpp9";
in
stdenv.mkDerivation rec {
2015-04-23 15:10:54 +02:00
name = "fio-${version}";
src = fetchFromGitHub {
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
inherit sha256;
};
2015-04-23 15:10:54 +02:00
buildInputs = [ libaio python zlib ];
2015-04-23 15:10:54 +02:00
enableParallelBuilding = true;
postPatch = ''
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
2015-04-23 15:10:54 +02: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;
};
}