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

42 lines
1.2 KiB
Nix
Raw Normal View History

2018-08-08 11:10:20 +00:00
{ stdenv, fetchFromGitHub, makeWrapper
, libaio, python, zlib
, withGnuplot ? false, gnuplot ? null }:
stdenv.mkDerivation rec {
2015-04-23 13:10:54 +00:00
name = "fio-${version}";
version = "3.13";
2015-04-23 13:10:54 +00:00
src = fetchFromGitHub {
2018-08-08 11:10:20 +00:00
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
sha256 = "0v5r97s3m67czq6ymqb5w3avf6mcnl2agzzwyd78g8gqvlyijlih";
};
2015-04-23 13:10:54 +00:00
buildInputs = [ python zlib ]
++ stdenv.lib.optional (!stdenv.isDarwin) libaio;
2015-04-23 13:10:54 +00:00
2018-08-08 11:10:20 +00:00
nativeBuildInputs = [ makeWrapper ];
2015-04-23 13:10:54 +00:00
enableParallelBuilding = true;
postPatch = ''
substituteInPlace Makefile \
--replace "mandir = /usr/share/man" "mandir = \$(prefix)/man" \
--replace "sharedir = /usr/share/fio" "sharedir = \$(prefix)/share/fio"
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
2015-04-23 13:10:54 +00:00
'';
2018-08-08 11:10:20 +00:00
postInstall = stdenv.lib.optionalString withGnuplot ''
wrapProgram $out/bin/fio2gnuplot \
--prefix PATH : ${stdenv.lib.makeBinPath [ gnuplot ]}
'';
meta = with stdenv.lib; {
description = "Flexible IO Tester - an IO benchmark tool";
2018-08-08 11:10:20 +00:00
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
license = licenses.gpl2;
platforms = platforms.unix;
};
}